Skip to content

Commit

Permalink
Add an all-checks CI task (#144)
Browse files Browse the repository at this point in the history
This adds a task that can be used to gate PRs.
  • Loading branch information
mjp41 authored Sep 23, 2024
1 parent f5874e6 commit 64612ba
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/buildtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,11 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{matrix.build-type}} --output-on-failure --timeout 400 --interactive-debug-mode 0

all-checks:
# Join of all build-test jobs
needs: [build-test]
runs-on: ubuntu-latest
steps:
- name: Check all jobs
run: echo "All jobs passed"

0 comments on commit 64612ba

Please sign in to comment.