We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5fc5790 + 89a9bd7 commit 07211c8Copy full SHA for 07211c8
1 file changed
.github/workflows/ci.yml
@@ -13,6 +13,18 @@ env:
13
RUST_BACKTRACE: 1
14
15
jobs:
16
+ # Depends on all actions that are required for a "successful" CI run.
17
+ # Based on the ci here: https://github.com/tokio-rs/tokio/blob/master/.github/workflows/ci.yml
18
+ all-systems-go:
19
+ runs-on: ubuntu-latest
20
+ needs:
21
+ - check
22
+ - fmt
23
+ - test
24
+ - docs
25
+ steps:
26
+ - run: exit 0
27
+
28
check:
29
runs-on: ubuntu-latest
30
steps:
0 commit comments