diff --git a/.github/workflows/python-checks.yml b/.github/workflows/python-checks.yml index 2d0a959..2af4ba2 100644 --- a/.github/workflows/python-checks.yml +++ b/.github/workflows/python-checks.yml @@ -10,7 +10,7 @@ permissions: contents: read jobs: - build: + test: runs-on: ubuntu-latest strategy: @@ -29,7 +29,7 @@ jobs: python -m pip install --upgrade pip wheel pip install -e .[test] - name: Type check with mypy - if: ${{ matrix.python-version >= 3.10 }} + if: ${{ matrix.python-version != 3.9 }} run: | mypy - name: Test with pytest