Skip to content

Commit e292129

Browse files
committed
ci change to maven
1 parent cbc1898 commit e292129

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@ jobs:
55
ci:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3 # Retrieve the content of the repository
8+
- uses: actions/checkout@v3
99
with:
1010
fetch-depth: 1
11-
- uses: actions/setup-java@v3 # Set up a jdk
11+
12+
- uses: actions/setup-java@v3
1213
with:
1314
distribution: temurin
1415
java-version: 11
15-
cache: sbt # Cache the artifacts downloaded by sbt accross CI runs
16-
- name: unit tests # Custom action consisting of a shell command
17-
run: sbt +test
16+
cache: maven
17+
18+
- name: Run tests
19+
run: mvn clean test
20+
21+
- name: Build package
22+
run: mvn package -DskipTests

0 commit comments

Comments
 (0)