Skip to content

Commit d5d7505

Browse files
authored
test: Add automated integration tests runs on GitHub(#112)
Add automated integration tests runs on GitHub
1 parent 2057ada commit d5d7505

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: .github/workflows/integ-tests.yml

+21
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)