diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 712269d..e71fba6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,3 +53,19 @@ jobs: with: command: clippy args: -- -D warnings + + # Job to key success status against + allgreen: + name: allgreen + if: always() + needs: + - check + - fmt + - test + - clippy + runs-on: ubuntu-latest + steps: + - name: Decide whether the needed jobs succeeded or failed + uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }}