chore: add ci job that depends on all tests (#2690)

This makes it a bit easier to block a PR from landing without CI
passing.
This commit is contained in:
Carl Lerche
2020-07-24 21:17:37 -07:00
committed by GitHub
parent 9943acda81
commit de7b8914a9
+18
View File
@@ -13,6 +13,24 @@ env:
minrust: 1.39.0
jobs:
# Depends on all action sthat are required for a "successful" CI run.
tests-pass:
name: all systems go
runs-on: ubuntu-latest
needs:
- test
- test-unstable
- miri
- cross
- features
- minrust
- fmt
- clippy
- docs
- loom
steps:
- run: exit 0
test:
name: test tokio full
runs-on: ${{ matrix.os }}