File tree 2 files changed +30
-22
lines changed
2 files changed +30
-22
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' master'
7
+ pull_request :
8
+ workflow_dispatch :
9
+
10
+ jobs :
11
+ build :
12
+ name : build
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - name : Checkout code
17
+ uses : actions/checkout@v2
18
+
19
+ - name : build
20
+ run : |
21
+ mkdir build
22
+ cd build
23
+ cmake ..
24
+ make
Original file line number Diff line number Diff line change 1
- name : LZW
1
+ name : run-tests
2
2
3
3
on :
4
- push :
4
+ workflow_run :
5
+ workflows : ['build']
5
6
branches :
6
- - ' master'
7
- pull_request :
8
- workflow_dispatch :
7
+ - master
8
+ types :
9
+ - completed
9
10
10
11
jobs :
11
- build :
12
- name : build
13
- runs-on : ubuntu-latest
14
-
15
- steps :
16
- - name : Checkout code
17
- uses : actions/checkout@v2
18
-
19
- - name : build
20
- run : |
21
- mkdir build
22
- cd build
23
- cmake ..
24
- make
25
-
26
12
test :
27
13
name : test
28
14
runs-on : ubuntu-latest
29
15
30
- needs : build
31
-
32
16
steps :
33
17
- name : Checkout code
34
18
uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments