File tree Expand file tree Collapse file tree 1 file changed +25
-14
lines changed Expand file tree Collapse file tree 1 file changed +25
-14
lines changed Original file line number Diff line number Diff line change @@ -4,20 +4,31 @@ on: [push]
44
55jobs :
66 build :
7-
87 runs-on : ubuntu-latest
98
109 steps :
11- - uses : actions/checkout@v3
12- - name : Set up JDK 17
13- uses : actions/setup-java@v4
14- with :
15- java-version : 17
16- distribution : ' temurin'
17- java-package : jdk
18- - name : Set up Maven 3.9.6
19- uses : stCarolas/setup-maven@v5
20- with :
21- maven-version : 3.9.6
22- - name : Build with Maven (Java 17)
23- run : mvn -B package --file com.googlecode.cppcheclipse.parent/pom.xml
10+ - uses : actions/checkout@v3
11+
12+ - name : Set up JDK 17
13+ uses : actions/setup-java@v4
14+ with :
15+ java-version : 17
16+ distribution : ' temurin'
17+ java-package : jdk
18+
19+ - name : Set up Maven 3.9.6
20+ uses : stCarolas/setup-maven@v5
21+ with :
22+ maven-version : 3.9.6
23+
24+ - name : Build with Maven (Java 17)
25+ run : mvn -B package --file com.googlecode.cppcheclipse.parent/pom.xml
26+
27+ - name : List files
28+ run : find -name \*
29+
30+ - uses : actions/upload-artifact@v4
31+ with :
32+ name : target
33+ path : com.googlecode.cppcheclipse.repository/target
34+
You can’t perform that action at this time.
0 commit comments