We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c88ed22 commit 2eb4faeCopy full SHA for 2eb4fae
.github/workflows/release.yml
@@ -25,9 +25,23 @@ jobs:
25
python-version: '3.11'
26
- name: Build
27
run: make compile-with-docker-all
28
- - name: Run Tests
29
- run: | # have to set up python?
30
- make tests-with-docker
+ - name: Run Integ Tests
+ run: make tests-with-docker
+ - 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
37
38
39
+ run: make integ-tests-with-docker-arm64
40
+ - name: Run Integ Tests Old
41
42
43
44
+ run: make integ-tests-with-docker-old
45
- name: Release
46
uses: softprops/action-gh-release@v2
47
with:
0 commit comments