Skip to content

Commit

Permalink
chore: Run tests with runtime type checking in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
antonagestam committed Oct 27, 2024
1 parent 132749a commit e609643
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,19 @@ jobs:
name: codecov-py${{ matrix.python-version }}
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

test-runtime-typing:
name: Test runtime typing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
cache-dependency-path: pyproject.toml
- name: Install requirements
run: pip install --upgrade '.[all,test]'
- name: Run tests with runtime typing enabled
run: make test-typeguard

0 comments on commit e609643

Please sign in to comment.