File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 runs-on : ${{ matrix.os }}
1414
1515 steps :
16+ - name : Get pip cache dir
17+ id : pip-cache
18+ shell : bash
19+ run : |
20+ echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
21+
22+ - name : cache
23+ uses : actions/cache@v4
24+ with :
25+ path : ${{ steps.pip-cache.outputs.dir }}
26+ key : ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('pyproject.toml') }}
27+ restore-keys : |
28+ ${{ runner.os }}-${{ matrix.python-version }}-pip-
29+
1630 - uses : actions/checkout@v4
1731
1832 - name : Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
Original file line number Diff line number Diff line change 11name : Python tests
22
3- on : [push, pull_request]
4- # pull_request: {}
5- # push:
6- # branches:
7- # - development
8- # - master
3+ on :
4+ pull_request : {}
5+ push :
6+ branches :
7+ - development
8+ - master
99
1010jobs :
1111 build :
You can’t perform that action at this time.
0 commit comments