diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 39edab5..a215f20 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.6, 3.7, 3.8, 3.9 ] + python-version: [ 3.7, 3.8, 3.9, '3.10' ] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -32,6 +32,7 @@ jobs: - name: Lint with flake8 run: flake8 . - name: Typecheck with mypy + if: matrix.python-version != 3.7 run: mypy . - name: Test packages run: python setup.py sdist bdist_wheel