Skip to content

Commit

Permalink
ci: add all-done job
Browse files Browse the repository at this point in the history
The sole reason is to simplify branch protection rules,
requiring just this one to be passed.

I tried but could not find a way to list all other jobs, so had to add
all of them manually.

Signed-off-by: Kir Kolyshkin <[email protected]>
  • Loading branch information
kolyshkin committed Oct 17, 2024
1 parent 96ddf55 commit 8a21e7b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,15 @@ jobs:
- name: test 32-bit
if: ${{ matrix.race }} == "" # -race is not supported on linux/386
run: make GOARCH=386 test

all-done:
needs:
- commit
- lint
- codespell
- cross
- test-stubs
- test
runs-on: ubuntu-22.04
steps:
- run: echo "All jobs completed"

0 comments on commit 8a21e7b

Please sign in to comment.