Skip to content

Commit

Permalink
ci: add job 'check' that all other jobs passed (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg authored Dec 20, 2024
1 parent 8471690 commit 45cac55
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- 2022-12-21-fuzz

jobs:
build:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,16 @@ jobs:
run: |
$env:LLVM_SYS_180_PREFIX="$(pwd)/.llvm"
cargo test --release -p tests --no-default-features --features ${{ matrix.wasmer-feature }} -- --nocapture
check:
if: ${{ always() }}
name: "All Jobs Pass"
runs-on: "ubuntu-latest"
needs:
- test-and-bench
- test-windows
steps:
- name: check status
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}

0 comments on commit 45cac55

Please sign in to comment.