We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a2b4b4 commit e7f5d65Copy full SHA for e7f5d65
.github/workflows/ci.yml
@@ -7,7 +7,7 @@ on:
7
branches: ["master"]
8
9
jobs:
10
- test:
+ unittests:
11
name: ${{ matrix.name }}
12
runs-on: ${{ matrix.os }}
13
if: github.event_name == 'pull_request'
@@ -106,3 +106,11 @@ jobs:
106
comment-on-alert: true
107
alert-threshold: '150%'
108
fail-on-alert: true
109
+
110
+ all-checks:
111
+ name: all-checks
112
+ runs-on: ubuntu-latest
113
+ if: github.event_name == 'pull_request'
114
+ needs: unittests
115
+ steps:
116
+ - run: echo "All checks passed"
0 commit comments