File tree Expand file tree Collapse file tree 1 file changed +5
-25
lines changed Expand file tree Collapse file tree 1 file changed +5
-25
lines changed Original file line number Diff line number Diff line change 15
15
16
16
jobs :
17
17
18
- prepare_tools :
18
+ build :
19
19
name : Prepare the Tools
20
20
runs-on : ubuntu-latest
21
21
steps :
@@ -31,35 +31,15 @@ jobs:
31
31
- name : Install promu
32
32
run : make promu
33
33
34
- - name : Upload Project Source Code
35
- uses : actions/upload-artifact@v1
36
- with :
37
- name : prj_src
38
- path : .
39
-
40
- - name : Show Project Files
41
- run : ls -la
42
-
43
- test :
44
- name : Test
45
- needs : prepare_tools
46
- runs-on : ubuntu-latest
47
- steps :
48
- - name : Download Project Source Code
49
- uses : actions/download-artifact@v1
50
- with :
51
- name : prj_src
52
-
53
- - name : Move Project Source Code to Root Path
54
- run : mv prj_src/* . && rm -rf prj_src/
55
- shell : bash
56
-
57
- - name : Show Project Files
34
+ - name : Show Project Files Before Make
58
35
run : ls -la
59
36
60
37
- name : Build and Test
61
38
run : make
62
39
40
+ - name : Show Project Files After Make
41
+ run : ls -la
42
+
63
43
- name : Check code modifications
64
44
run : git diff --exit-code
65
45
You can’t perform that action at this time.
0 commit comments