Skip to content

Commit f721669

Browse files
committed
Split further into Rocky8 and 9 flavors with more specific version match.
1 parent 3e78d1b commit f721669

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,26 @@ jobs:
4242
steps:
4343
- name: Check out repository contents
4444
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
4646
uses: actions/setup-python@v3
4747
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"
4965
- name: Setup environment
5066
run: |
5167
make dependencies

0 commit comments

Comments
 (0)