Skip to content

Commit eed125f

Browse files
committed
update CI scripts
1 parent 42732f4 commit eed125f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ jobs:
77
build:
88
name: Build and Test
99
runs-on: ubuntu-latest
10-
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
1110
steps:
1211
- uses: actions/checkout@v4
1312
- uses: actions/setup-java@v4
@@ -22,7 +21,7 @@ jobs:
2221
mvn -B versions:set --file ./pom.xml -DnewVersion=${GITHUB_REF##*/}
2322
- name: Build and Test
2423
id: buildAndTest
25-
run: mvn -B clean install
24+
run: mvn -B clean verify
2625
- uses: actions/upload-artifact@v4
2726
with:
2827
name: artifacts

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
with:
3030
languages: java
3131
- name: Build
32-
run: mvn -B compile
32+
run: mvn -B test
3333
- name: Perform CodeQL Analysis
3434
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)