Skip to content

Add additional typing hints #35

Add additional typing hints

Add additional typing hints #35

Workflow file for this run

name: main
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install build tools
run: |
python -m pip install --upgrade pip pre-commit setuptools nox
- name: Run pre-commit
run: |
pre-commit run --all-files
- name: Run nox tests
run: |
nox