diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d39aff24e..ad39ccd9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,8 +5,20 @@ on: push: branches: - master +env: + RUST_BACKTRACE: 1 jobs: + ci-pass: + name: CI is green + runs-on: ubuntu-latest + needs: + - style + - test + - doc + steps: + - run: exit 0 + style: name: Check Style runs-on: ubuntu-latest