Skip to content

Commit 9bc4617

Browse files
committed
Remove non-3.13 workflows from CI/CD
1 parent 95a0349 commit 9bc4617

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,8 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.9]
12-
splunk-version: [9.4, latest]
13-
include:
14-
# Oldest possible configuration
15-
# Last Ubuntu version with Python 3.7 binaries available
16-
- os: ubuntu-22.04
17-
python-version: 3.7
18-
splunk-version: 9.1
19-
# Latest possible configuration
20-
- os: ubuntu-latest
21-
python-version: 3.13
22-
splunk-version: latest
11+
python-version: [3.13]
12+
splunk-version: [latest]
2313
steps:
2414
- name: Checkout code
2515
uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e
@@ -29,11 +19,7 @@ jobs:
2919
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548
3020
with:
3121
python-version: ${{ matrix.python-version }}
32-
- name: (Python 3.7) Install dependencies
33-
if: ${{ matrix.python-version == '3.7' }}
34-
run: python -m pip install python-dotenv pytest
35-
- name: (Python >= 3.9) Install dependencies
36-
if: ${{ matrix.python-version != '3.7' }}
22+
- name: Install dependencies
3723
run: python -m pip install . --group test
3824
- name: Run entire test suite
3925
run: python -m pytest ./tests

0 commit comments

Comments
 (0)