Skip to content

Commit 2eb4fae

Browse files
committed
added tests inside
1 parent c88ed22 commit 2eb4fae

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

.github/workflows/release.yml

+17-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,23 @@ jobs:
2525
python-version: '3.11'
2626
- name: Build
2727
run: make compile-with-docker-all
28-
- name: Run Tests
29-
run: | # have to set up python?
30-
make tests-with-docker
28+
- name: Run Integ Tests
29+
run: make tests-with-docker
30+
- name: Run Integ Tests x86
31+
uses: actions/setup-python@v5
32+
with:
33+
python-version: '3.11'
34+
run: make integ-tests-with-docker-x86-64
35+
- name: Run Integ Tests arm64
36+
uses: actions/setup-python@v5
37+
with:
38+
python-version: '3.11'
39+
run: make integ-tests-with-docker-arm64
40+
- name: Run Integ Tests Old
41+
uses: actions/setup-python@v5
42+
with:
43+
python-version: '3.11'
44+
run: make integ-tests-with-docker-old
3145
- name: Release
3246
uses: softprops/action-gh-release@v2
3347
with:

0 commit comments

Comments
 (0)