File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 53
53
run : |
54
54
make test
55
55
56
+ python3-rocky9 :
57
+ runs-on : ubuntu-22.04
58
+ container :
59
+ image : rockylinux/rockylinux:9
60
+ steps :
61
+ - name : Check out repository contents
62
+ uses : actions/checkout@v3
63
+ - name : Set up Python 3 with DNF
64
+ run : |
65
+ dnf install -y python3 python3-pip
66
+ - name : Setup environment
67
+ run : |
68
+ make dependencies
69
+ - name : Run tests
70
+ run : |
71
+ make test
72
+
56
73
python3-rocky8ish :
57
74
runs-on : ubuntu-20.04
58
75
steps :
69
86
run : |
70
87
make test
71
88
89
+ python3-rocky8 :
90
+ runs-on : ubuntu-20.04
91
+ container :
92
+ image : rockylinux/rockylinux:8
93
+ steps :
94
+ - name : Check out repository contents
95
+ uses : actions/checkout@v3
96
+ - name : Set up Python 3 with DNF
97
+ run : |
98
+ dnf install -y python3 python3-pip
99
+ - name : Setup environment
100
+ run : |
101
+ make dependencies
102
+ - name : Run tests
103
+ run : |
104
+ make test
105
+
72
106
python2-latest :
73
107
runs-on : ubuntu-latest
74
108
container :
You can’t perform that action at this time.
0 commit comments