summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2020-07-24 21:17:37 -0700
committerGitHub <noreply@github.com>2020-07-24 21:17:37 -0700
commitde7b8914a966f73252544b71cf8c80f6dba184c5 (patch)
tree97e49654c47789fb1729bbf369c5a50b78d85394 /.github/workflows
parent9943acda81e19563c9f35ad2426e473732760e75 (diff)
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.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 33ac957c..054cf116 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -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 }}