File tree Expand file tree Collapse file tree 1 file changed +21
-5
lines changed Expand file tree Collapse file tree 1 file changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -21,31 +21,47 @@ permissions:
21
21
contents : read
22
22
23
23
jobs :
24
- python3 :
24
+ python3-latest :
25
25
runs-on : ubuntu-latest
26
+ steps :
27
+ - name : Check out repository contents
28
+ uses : actions/checkout@v4
29
+ - name : Set up latest Python 3.x
30
+ uses : actions/setup-python@v5
31
+ with :
32
+ python-version : " 3.x"
33
+ - name : Setup environment
34
+ run : |
35
+ make dependencies
36
+ - name : Run tests
37
+ run : |
38
+ make test
39
+
40
+ python3-rocky9ish :
41
+ runs-on : ubuntu-22.04
26
42
steps :
27
43
- name : Check out repository contents
28
44
uses : actions/checkout@v3
29
- - name : Set up Python 3.10
45
+ - name : Set up Python 3.9 to mimic Rocky9
30
46
uses : actions/setup-python@v3
31
47
with :
32
- python-version : " 3.10 "
48
+ python-version : " 3.9 "
33
49
- name : Setup environment
34
50
run : |
35
51
make dependencies
36
52
- name : Run tests
37
53
run : |
38
54
make test
39
55
40
- python2 :
56
+ python2-latest :
41
57
runs-on : ubuntu-latest
42
58
container :
43
59
image : python:2
44
60
volumes :
45
61
- .:/usr/src/app
46
62
steps :
47
63
- name : Check out repository contents
48
- uses : actions/checkout@v3
64
+ uses : actions/checkout@v4
49
65
- name : Setup environment
50
66
run : |
51
67
pip install --no-cache-dir -r requirements.txt -r local-requirements.txt
You can’t perform that action at this time.
0 commit comments