diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 702c8384..060a53c3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -146,3 +146,19 @@ jobs: run: | cd $GITHUB_WORKSPACE nix develop --accept-flake-config .#ci --command ./run_test.sh -s ${{ matrix.scope }} + + ci_pass: + if: ${{ always() }} + runs-on: "ubuntu-latest" + needs: + - cargo_test + - rustfmt + - clippy + - nix_build + - testbuild + - testbuild_by_scope + steps: + - name: check status + uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }} \ No newline at end of file