We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbc1898 commit e292129Copy full SHA for e292129
.github/workflows/ci.yml
@@ -5,13 +5,18 @@ jobs:
5
ci:
6
runs-on: ubuntu-latest
7
steps:
8
- - uses: actions/checkout@v3 # Retrieve the content of the repository
+ - uses: actions/checkout@v3
9
with:
10
fetch-depth: 1
11
- - uses: actions/setup-java@v3 # Set up a jdk
+
12
+ - uses: actions/setup-java@v3
13
14
distribution: temurin
15
java-version: 11
- 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
+ cache: maven
18
+ - name: Run tests
19
+ run: mvn clean test
20
21
+ - name: Build package
22
+ run: mvn package -DskipTests
0 commit comments