We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2057ada commit d5d7505Copy full SHA for d5d7505
.github/workflows/integ-tests.yml
@@ -0,0 +1,21 @@
1
+name: Run Integration Tests
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - develop
7
8
+jobs:
9
+ integ-tests:
10
+ runs-on: ubuntu-latest
11
+ environment:
12
+ name: prod
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-python@v5
16
+ with:
17
+ python-version: '3.11'
18
+ - name: allows us to build arm64 images
19
+ run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
20
+ - name: run integration tests
21
+ run: make integ-tests-with-docker
0 commit comments