Skip to content

added docstring

added docstring #48

Workflow file for this run

name: Pre-commit Checks
on:
push:
branches:
- '**'
jobs:
pre-commit:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[test]"
pip install pre-commit coverage
- name: Run pre-commit hooks
env:
TEAM_API_KEY: ${{ secrets.TEAM_API_KEY }}
run: pre-commit run --all-files