Skip to content

Commit

Permalink
chore: dropped python-3.7 and added 3.9 to 3.12
Browse files Browse the repository at this point in the history
(cherry picked from commit 712603c)
  • Loading branch information
SamuelLarkin committed Jan 29, 2025
1 parent ea5bedd commit 90c9f35
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
strategy:
max-parallel: 5
matrix:
python: [3.7, 3.8]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Run tests
run: >
source SETUP.bash
&& cd tests
&& echo "Using $(nproc) threads"
&& ./run-all-tests.sh -j 5
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Run tests
run: >
source SETUP.bash
&& cd tests
&& echo "Using $(nproc) threads"
&& ./run-all-tests.sh -j 5

0 comments on commit 90c9f35

Please sign in to comment.