Skip to content

Commit 170e153

Browse files
committed
seperate tests, no cart. product required
1 parent 6953ec7 commit 170e153

File tree

1 file changed

+29
-8
lines changed

1 file changed

+29
-8
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ jobs:
4444
id: npm-ci-test
4545
run: npm run ci-test
4646

47-
test-action:
48-
name: GitHub Actions Test
47+
test-action-z3:
48+
name: Z3 Integration Tests
4949
strategy:
5050
fail-fast: false
5151
matrix:
5252
os: [macos-latest, ubuntu-latest, windows-latest]
53-
z3-version:
53+
z3:
5454
[
5555
'4.13.0',
5656
'4.13.1',
@@ -63,7 +63,6 @@ jobs:
6363
'4.15.3',
6464
'4.15.4'
6565
]
66-
cvc5-version: ['1.3.2', '1.3.1', '1.2.1', '1.2.0']
6766
runs-on: ${{ matrix.os }}
6867

6968
steps:
@@ -74,9 +73,31 @@ jobs:
7473
- name: Test Local Action
7574
id: test-action
7675
uses: ./
76+
with:
77+
z3Version: ${{ matrix.z3 }}
78+
cvc5Version: false
79+
80+
- run: z3 --version
7781

78-
- name: Print SMT z3
79-
run: z3 --version
82+
test-action-cvc5:
83+
name: CVC5 Integration Test
84+
strategy:
85+
fail-fast: false
86+
matrix:
87+
os: [macos-latest, ubuntu-latest, windows-latest]
88+
cvc5: ['1.3.2', '1.3.1', '1.2.1', '1.2.0']
89+
runs-on: ${{ matrix.os }}
90+
91+
steps:
92+
- name: Checkout
93+
id: checkout
94+
uses: actions/checkout@v6
95+
96+
- name: Test Local Action
97+
id: test-action
98+
uses: ./
99+
with:
100+
z3Version: false
101+
cvc5Version: ${{ matrix.cvc5 }}
80102

81-
- name: Print SMT cvc5
82-
run: cvc5 --version
103+
- run: cvc5 --version

0 commit comments

Comments
 (0)