diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e46960d..fec7267 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,5 +38,11 @@ jobs: - name: Run static analysis run: hatch fmt --check + - name: Run type check + run: hatch run types:check + + - name: Run pre-commit + run: hatch run pre-commit run --all + - name: Run tests run: hatch test --python ${{ matrix.python-version }} --cover --randomize --parallel --retries 2 --retry-delay 1