diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7102b58..4991730 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,7 @@ on: jobs: test: strategy: + fail-fast: false matrix: python-version: - '3.9' @@ -50,6 +51,7 @@ jobs: - name: pre-commit run: pre-commit run --all + - name: Check stubs if: (! startsWith(matrix.python-version, 'pypy-')) run: make mypy PYTHON=python @@ -59,7 +61,7 @@ jobs: - name: Upload Coverage to Codecov if: always() - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 env: PYTHON: ${{ matrix.python-version }} with: