Skip to content

Commit

Permalink
test: Add automated integration tests runs on GitHub(#112)
Browse files Browse the repository at this point in the history
Add automated integration tests runs on GitHub
  • Loading branch information
mbfreder authored Mar 7, 2024
1 parent 2057ada commit d5d7505
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/integ-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Integration Tests

on:
pull_request:
branches:
- develop

jobs:
integ-tests:
runs-on: ubuntu-latest
environment:
name: prod
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: allows us to build arm64 images
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: run integration tests
run: make integ-tests-with-docker

0 comments on commit d5d7505

Please sign in to comment.