File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ permissions:
23
23
contents : read
24
24
25
25
jobs :
26
- python3-latest :
26
+ # NOTE: this one has minor version fluctuations even between runners
27
+ python3-latest-ubuntu :
27
28
runs-on : ubuntu-latest
28
29
steps :
29
30
- name : Check out repository contents
39
40
run : |
40
41
make unittest
41
42
43
+ # We rely on containers for everything else for consistency
44
+ python3-latest :
45
+ runs-on : ubuntu-latest
46
+ container :
47
+ image : python:3
48
+ volumes :
49
+ - .:/usr/src/app
50
+ steps :
51
+ - name : Check out repository contents
52
+ uses : actions/checkout@v4
53
+ - name : Setup environment
54
+ run : |
55
+ make PYTHON_BIN=python3 dependencies
56
+ - name : Run tests
57
+ run : |
58
+ make PYTHON_BIN=python3 unittest
59
+
42
60
python3-rocky9 :
43
61
runs-on : ubuntu-22.04
44
62
container :
You can’t perform that action at this time.
0 commit comments