Skip to content

Commit

Permalink
CI/CD: prevent PRs to be merged if integration tests fail
Browse files Browse the repository at this point in the history
  • Loading branch information
ivard committed Nov 29, 2023
1 parent cc5c6c8 commit 4bea1df
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/status-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,11 @@ jobs:
keyshare-server-artifact: irma-linux-amd64 # Current build

analyze:
needs: build
# Add integration tests as dependencies to make sure that PRs are not merged if they fail.
needs:
- build
- integration-test-clientside
- integration-test-serverside
runs-on: ubuntu-latest
permissions:
actions: read
Expand Down

0 comments on commit 4bea1df

Please sign in to comment.