Skip to content

Commit ba47548

Browse files
committed
ci: add all-done job
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]>
1 parent e2f9e99 commit ba47548

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/validate.yml

+12
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,15 @@ jobs:
9292
- name: test 32-bit
9393
if: ${{ matrix.race }} == "" # -race is not supported on linux/386
9494
run: make GOARCH=386 test
95+
96+
all-done:
97+
needs:
98+
- commit
99+
- lint
100+
- codespell
101+
- cross
102+
- test-stubs
103+
- test
104+
runs-on: ubuntu-22.04
105+
steps:
106+
- run: echo "All jobs completed"

0 commit comments

Comments
 (0)