Skip to content

Commit 75e9a43

Browse files
Test fix pipeline
1 parent 1a3e290 commit 75e9a43

File tree

1 file changed

+30
-7
lines changed

1 file changed

+30
-7
lines changed

.github/workflows/test.yml

+30-7
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,36 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
os:
13-
- ubuntu-latest
14-
python: [ 3.7, 3.9, 3.13]
15-
splunk-version:
16-
- "8.1"
17-
- "8.2"
18-
- "latest"
12+
include:
13+
- os: ubuntu-22.04 # Only for Python 3.7
14+
python: 3.7
15+
splunk-version: "8.1"
16+
- os: ubuntu-22.04
17+
python: 3.7
18+
splunk-version: "8.2"
19+
- os: ubuntu-22.04
20+
python: 3.7
21+
splunk-version: "latest"
22+
23+
- os: ubuntu-latest # For newer Python versions
24+
python: 3.9
25+
splunk-version: "8.1"
26+
- os: ubuntu-latest
27+
python: 3.9
28+
splunk-version: "8.2"
29+
- os: ubuntu-latest
30+
python: 3.9
31+
splunk-version: "latest"
32+
33+
- os: ubuntu-latest
34+
python: 3.13
35+
splunk-version: "8.1"
36+
- os: ubuntu-latest
37+
python: 3.13
38+
splunk-version: "8.2"
39+
- os: ubuntu-latest
40+
python: 3.13
41+
splunk-version: "latest"
1942
fail-fast: false
2043

2144
steps:

0 commit comments

Comments
 (0)