Skip to content

Commit

Permalink
Add "All Succeeded" job (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
paholg authored Sep 19, 2023
1 parent 8d74a94 commit 1ffcd8f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ on:
name: CI

jobs:
all-succeeded:
name: All Succeeded
if: always()
runs-on: ubuntu-latest
needs:
- test
- lint
steps:
- name: Check if all jubs succeeded
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}

test:
name: Test
runs-on: ubuntu-latest
Expand All @@ -32,7 +45,7 @@ jobs:
- run: cargo test ${{ matrix.flags }}
- run: cargo doc

clippy:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 1ffcd8f

Please sign in to comment.