-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (43 loc) · 1.01 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: test
on:
push:
branches: ["**"]
pull_request:
workflow_dispatch:
inputs: # null for another event
skip:
type: boolean
default: false
permissions: {}
jobs:
test1:
runs-on: ubuntu-latest
steps:
- run: exit 1
continue-on-error: true
- run: exit 1
continue-on-error: true
- run: exit 1
continue-on-error: true
test2:
runs-on: ubuntu-latest
steps:
- run: exit 1
continue-on-error: true
- run: exit 1
continue-on-error: true
- run: exit 0
test3:
runs-on: ubuntu-latest
steps:
- uses: docker://mikefarah/yq:4.44.1-githubaction@sha256:ecec8897cfc63329efa97179e4ddc5b2b571ab19dce13c98988fbca5fc778127
continue-on-error: true
- uses: goto-bus-stop/setup-zig@v2
- id: step1
run: exit 0
continue-on-error: true
- id: step2
run: exit 0
continue-on-error: true
- if: contains(steps.*.outcome, 'failure')
run: exit 1