Skip to content

Commit 7f96a4e

Browse files
Use a matrix job instead of 4 test jobs
1 parent 8eb42a9 commit 7f96a4e

File tree

4 files changed

+6
-110
lines changed

4 files changed

+6
-110
lines changed

.github/workflows/test-py311.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/test-py38.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/test-py39.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/test-py310.yml renamed to .github/workflows/test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PyVCG CI (Test, Python 3.10)
1+
name: PyVCG CI Test
22

33
on:
44
push:
@@ -11,20 +11,21 @@ permissions:
1111

1212
jobs:
1313
build:
14-
14+
strategy:
15+
matrix:
16+
py-version: ["3.8", "3.9", "3.10", "3.11"]
1517
runs-on: ubuntu-latest
16-
1718
steps:
1819
- uses: actions/checkout@v3
1920
- uses: supplypike/setup-bin@v3
2021
with:
2122
uri: 'https://github.com/cvc5/cvc5/releases/download/cvc5-1.0.8/cvc5-Linux'
2223
name: 'cvc5'
2324
version: '1.0.8'
24-
- name: Set up Python 3.10
25+
- name: Set up Python ${{ matrix.py-version }}
2526
uses: actions/setup-python@v3
2627
with:
27-
python-version: "3.10"
28+
python-version: ${{ matrix.py-version }}
2829
- name: Install dependencies
2930
run: |
3031
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)