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