File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed
Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change 9494 - name : Checkout code
9595 uses : actions/checkout@v2
9696
97- - name : Set up Python ${{ matrix.python-version }}
98- uses : actions/setup-python@v2
99- with :
100- python-version : ' 3.10'
101-
102- - name : Cache pip
103- uses : actions/cache@v2
104- with :
105- path : ~/.cache/pip
106- key : ${{ runner.os }}-python-3.10-pip-${{ hashFiles('requirements*.txt') }}
107- restore-keys : |
108- ${{ runner.os }}-python-3.10-pip-${{ hashFiles('requirements*.txt') }}
109- ${{ runner.os }}-python-3.10-pip-
110- ${{ runner.os }}-python
111- ${{ runner.os }}-
112-
113- - name : Upgrade pip
114- run : python -m pip install --upgrade pip setuptools wheel
115-
116- - name : Install dependencies
117- run : pip install -I -r requirements.txt -r requirements-test.txt
118-
11997 - name : Download all coverage reports
12098 uses : actions/download-artifact@v2
12199 with :
You can’t perform that action at this time.
0 commit comments