This repository was archived by the owner on Aug 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-28
lines changed Expand file tree Collapse file tree 1 file changed +9
-28
lines changed Original file line number Diff line number Diff line change @@ -13,22 +13,11 @@ jobs:
13
13
python-version : [3.7]
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
- name : Set up Python ${{ matrix.python-version }}
18
- uses : actions/setup-python@v1
18
+ uses : actions/setup-python@v4
19
19
with :
20
20
python-version : ${{ matrix.python-version }}
21
- - name : Get pip cache
22
- id : pip-cache
23
- run : |
24
- python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
25
- - name : pip cache
26
- uses : actions/cache@v1
27
- with :
28
- path : ${{ steps.pip-cache.outputs.dir }}
29
- key : ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
30
- restore-keys : |
31
- ${{ runner.os }}-pip-
32
21
- name : Install dependencies
33
22
run : |
34
23
pip install -U .[dev]
@@ -43,26 +32,18 @@ jobs:
43
32
max-parallel : 40
44
33
matrix :
45
34
python-version :
46
- - 3.7
47
- - 3.8
35
+ - " 3.7"
36
+ - " 3.8"
37
+ - " 3.9"
38
+ - " 3.10"
39
+ - " 3.11"
48
40
49
41
steps :
50
- - uses : actions/checkout@v2
42
+ - uses : actions/checkout@v3
51
43
- name : Set up Python ${{ matrix.python-version }}
52
- uses : actions/setup-python@v1
44
+ uses : actions/setup-python@v4
53
45
with :
54
46
python-version : ${{ matrix.python-version }}
55
- - name : Get pip cache
56
- id : pip-cache
57
- run : |
58
- python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
59
- - name : pip cache
60
- uses : actions/cache@v1
61
- with :
62
- path : ${{ steps.pip-cache.outputs.dir }}
63
- key : ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
64
- restore-keys : |
65
- ${{ runner.os }}-pip-
66
47
- name : Install dependencies
67
48
run : |
68
49
set -x
You can’t perform that action at this time.
0 commit comments