diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30f83a6..53db5d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,20 @@ env: RUST_BACKTRACE: 1 jobs: + ci-pass: + name: CI is green + runs-on: ubuntu-latest + needs: + - style + - test + - nightly + - minversion + - android + - wasm + - docs + steps: + - run: exit 0 + style: name: Check Style @@ -38,7 +52,7 @@ jobs: # Workaround for rust-lang/cargo#7732 run: cargo fmt -- --check $(find . -name '*.rs' -print) - build: + test: name: ${{ matrix.name }} needs: [style]