We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ce841 commit fac8f73Copy full SHA for fac8f73
.github/workflows/tests.yaml
@@ -37,3 +37,19 @@ jobs:
37
cache-dependency-path: requirements*/*.txt
38
- run: pip install tox
39
- 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
52
+ path: ./.mypy_cache
53
+ key: mypy|${{ hashFiles('pyproject.toml') }}
54
+ - run: pip install tox
55
+ - run: tox run -e typing
0 commit comments