File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 8686 if : ${{ steps.counter.outputs.count > 0 }}
8787 with :
8888 python-version : ' 3.9'
89+ cache : ' pip'
90+ cache-dependency-path : ' setup.py'
8991 - run : pip install mypy==1.5.1
9092 if : ${{ steps.counter.outputs.count > 0 }}
9193 - run : mypy ${{ steps.filter.outputs.python_files }} --follow-imports=silent --ignore-missing-imports
Original file line number Diff line number Diff line change 2929 uses : actions/setup-python@v4
3030 with :
3131 python-version : ${{ matrix.py }}
32+ cache : ' pip'
33+ cache-dependency-path : ' setup.py'
34+ - name : Cache tox environments
35+ uses : actions/cache@v3
36+ with :
37+ path : .tox
38+ key : tox-${{ matrix.os }}-${{ matrix.py }}-${{ hashFiles('tox.ini', 'setup.py') }}
39+ restore-keys : |
40+ tox-${{ matrix.os }}-${{ matrix.py }}-
3241 - name : Install tox
3342 run : python -m pip install tox
3443 - name : Setup test suite
You can’t perform that action at this time.
0 commit comments