We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a07a2f + f5f008e commit 78ccda3Copy full SHA for 78ccda3
.github/workflows/python-test.yml
@@ -10,14 +10,21 @@ jobs:
10
build:
11
runs-on: ${{ matrix.os }}
12
strategy:
13
- matrix:
14
- os:
15
- - ubuntu-latest
16
- python: [3.9, 3.13]
17
- splunk-version:
18
- - "8.0"
19
- - "latest"
20
fail-fast: false
+ matrix:
+ os: [ubuntu-latest]
+ python-version: [3.9]
+ splunk-version: [9.4, latest]
+ include:
+ # Oldest possible configuration
+ # Last Ubuntu version with Python 3.7 binaries available
21
+ - os: ubuntu-22.04
22
+ python-version: 3.7
23
+ splunk-version: 9.1
24
+ # Latest possible configuration
25
+ - os: ubuntu-latest
26
+ python-version: 3.13
27
+ splunk-version: latest
28
29
services:
30
splunk:
0 commit comments