File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 python-version : 3.9
2121 - name : Install dependencies
2222 run : |
23- python -m pip install --upgrade pip
23+ pip install --upgrade pip
2424 pip install -r docs/requirements.txt
2525 - name : Build the documentation
2626 run : make -C docs html
Original file line number Diff line number Diff line change 2727 with :
2828 python-version : ${{ matrix.python-version }}
2929
30+ - name : Load pip cache
31+ uses : actions/cache@v2
32+ with :
33+ path : ~/.cache/pip
34+ key : ${{ runner.os }}-pip-${{ hashFiles('**/test-requirements.txt') }}
35+ restore-keys : |
36+ ${{ runner.os }}-pip-
37+
3038 - name : Install dependencies
3139 run : |
32- python -m pip install --upgrade pip
40+ pip install --upgrade pip
3341 pip install -r test-requirements.txt
3442
3543 - name : Run tests
5664 with :
5765 python-version : 3.9
5866
67+ - name : Load pip cache
68+ uses : actions/cache@v2
69+ with :
70+ path : ~/.cache/pip
71+ key : ${{ runner.os }}-pip-${{ hashFiles('**/test-requirements.txt') }}
72+ restore-keys : |
73+ ${{ runner.os }}-pip-
74+
5975 - name : Install dependencies
6076 run : |
61- python -m pip install --upgrade pip
77+ pip install --upgrade pip
6278 pip install -r test-requirements.txt
6379
6480 - name : Lint implementation
You can’t perform that action at this time.
0 commit comments