We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1f0da6d + e7f5d65 commit 505234bCopy full SHA for 505234b
1 file changed
.github/workflows/ci.yml
@@ -7,9 +7,10 @@ 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'
14
15
strategy:
16
fail-fast: false
@@ -105,3 +106,11 @@ jobs:
105
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
114
+ needs: unittests
115
+ steps:
116
+ - run: echo "All checks passed"
0 commit comments