Skip to content

Commit 8be0332

Browse files
committed
CI: To save resources, only use the most recent Python version on macOS
1 parent 1ce9413 commit 8be0332

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,20 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
os: [ubuntu-latest, macos-latest]
22+
os: ['ubuntu-latest', 'macos-latest']
2323
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
2424
cratedb-version: ['5.1.1']
2525
sqla-version: ['1.3.24', '1.4.44']
26+
# To save resources, only use the most recent Python version on macOS.
27+
exclude:
28+
- os: 'macos-latest'
29+
python-version: '3.7'
30+
- os: 'macos-latest'
31+
python-version: '3.8'
32+
- os: 'macos-latest'
33+
python-version: '3.9'
34+
- os: 'macos-latest'
35+
python-version: '3.10'
2636
fail-fast: true
2737
env:
2838
CRATEDB_VERSION: ${{ matrix.cratedb-version }}

0 commit comments

Comments
 (0)