Skip to content

Commit fac8f73

Browse files
chore: Add Typing in Ci
1 parent 64ce841 commit fac8f73

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,19 @@ jobs:
3737
cache-dependency-path: requirements*/*.txt
3838
- run: pip install tox
3939
- run: tox run -e ${{ matrix.tox || format('py{0}', matrix.python) }}
40+
typing:
41+
runs-on: ubuntu-latest
42+
steps:
43+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
44+
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
45+
with:
46+
python-version: '3.x'
47+
cache: pip
48+
cache-dependency-path: requirements*/*.txt
49+
- name: cache mypy
50+
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
51+
with:
52+
path: ./.mypy_cache
53+
key: mypy|${{ hashFiles('pyproject.toml') }}
54+
- run: pip install tox
55+
- run: tox run -e typing

0 commit comments

Comments
 (0)