File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,26 @@ jobs:
42
42
steps :
43
43
- name : Check out repository contents
44
44
uses : actions/checkout@v3
45
- - name : Set up Python 3.9 to mimic Rocky9
45
+ - name : Set up Python 3.9.18 to mimic Rocky9
46
46
uses : actions/setup-python@v3
47
47
with :
48
- python-version : " 3.9"
48
+ python-version : " 3.9.18"
49
+ - name : Setup environment
50
+ run : |
51
+ make dependencies
52
+ - name : Run tests
53
+ run : |
54
+ make test
55
+
56
+ python3-rocky8ish :
57
+ runs-on : ubuntu-20.04
58
+ steps :
59
+ - name : Check out repository contents
60
+ uses : actions/checkout@v3
61
+ - name : Set up Python 3.6.8 to mimic Rocky8
62
+ uses : actions/setup-python@v3
63
+ with :
64
+ python-version : " 3.6.8"
49
65
- name : Setup environment
50
66
run : |
51
67
make dependencies
You can’t perform that action at this time.
0 commit comments