File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches : ["main"]
6
6
pull_request :
7
- # The branches below must be a subset of the branches above
8
7
branches : ["main"]
9
8
10
9
jobs :
11
10
test :
12
11
strategy :
13
12
matrix :
14
- python : [ 3.7, 3.8, 3.9 ]
13
+ python : [ " 3.7", " 3.8", " 3.9", "3.10" ]
15
14
os : [ ubuntu-latest, macos-latest, windows-latest ]
16
15
runs-on : ${{ matrix.os }}
17
-
18
16
steps :
19
17
- uses : actions/checkout@v2
20
18
- name : Set up Python
@@ -27,11 +25,11 @@ jobs:
27
25
path : .venv
28
26
key : ${{ runner.os }}-${{ matrix.python }}-dependencies-${{ hashFiles('**/poetry.lock') }}
29
27
restore-keys : |
30
- ${{ runner.os }}-${{ matrix.python }}-dependencies-v2
28
+ ${{ runner.os }}-${{ matrix.python }}-dependencies
31
29
- name : Install dependencies
32
30
run : |
33
31
pip install poetry
34
- poetry config virtualenvs.in-project true
32
+ python -m venv .venv
35
33
poetry run python -m pip install --upgrade pip
36
34
poetry install
37
35
You can’t perform that action at this time.
0 commit comments