File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change 12
12
# week, Sundays at 6:00 UTC.
13
13
- cron : " 0 6 * * 0"
14
14
15
+ permissions :
16
+ contents : read
17
+
15
18
concurrency :
16
19
group : " ${{ github.workflow }}-${{ github.ref }}"
17
20
cancel-in-progress : true
26
29
27
30
jobs :
28
31
tests :
29
- name : " Python ${{ matrix.python-version }} on ${{ matrix.os }}"
30
- runs-on : " ${{ matrix.os }}"
32
+ name : " ${{ matrix.python-version }} on ${{ matrix.os }}"
33
+ runs-on : " ${{ matrix.os }}-latest "
31
34
32
35
strategy :
33
36
matrix :
34
37
os :
35
- - ubuntu-latest
36
- - macos-latest
37
- - windows-latest
38
+ - ubuntu
39
+ - macos
40
+ - windows
38
41
python-version :
39
42
# When changing this list, be sure to check the [gh-actions] list in
40
43
# tox.ini so that tox will run properly.
@@ -46,12 +49,13 @@ jobs:
46
49
47
50
steps :
48
51
- name : " Check out the repo"
49
- uses : " actions/checkout@v2 "
52
+ uses : " actions/checkout@v3 "
50
53
51
54
- name : " Set up Python"
52
- uses : " actions/setup-python@v2 "
55
+ uses : " actions/setup-python@v4 "
53
56
with :
54
57
python-version : " ${{ matrix.python-version }}"
58
+ allow-prereleases : true
55
59
56
60
- name : " Install dependencies"
57
61
run : |
You can’t perform that action at this time.
0 commit comments