Skip to content

Commit

Permalink
ci: add typesafety checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-- committed Apr 1, 2024
1 parent 23f08e5 commit f1ed2ef
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,24 @@ jobs:
- name: Run tests
run: nox -s tests-${{ matrix.fsspec || matrix.pyv }} -- --cov-report=xml

typesafety:
runs-on: ubuntu-latest

steps:
- name: Check out the repository
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.pyv }}
uses: actions/setup-python@v4
with:
python-version: '3.8'

- name: Install nox
run: python -m pip install --upgrade nox

- name: Run typesafety checks
run: nox -s typesafety

lint:
runs-on: ubuntu-latest

Expand Down

0 comments on commit f1ed2ef

Please sign in to comment.