Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit aed7c2b

Browse files
committed
1 parent e45c5f8 commit aed7c2b

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,30 @@ on:
1111

1212
jobs:
1313
build:
14+
name: Build (Java ${{ matrix.java }})
1415
runs-on: ubuntu-latest
16+
1517
strategy:
1618
matrix:
1719
java: [ 8, 11 ]
18-
name: Test with Java ${{ matrix.java }}
20+
1921
steps:
20-
- uses: actions/checkout@v2
22+
- name: Checkout repository
23+
uses: actions/checkout@v2
24+
2125
- name: Set up JDK ${{ matrix.java }}
2226
uses: actions/setup-java@v1
2327
with:
2428
java-version: ${{ matrix.java }}
29+
2530
- name: Cache Maven packages
2631
# FIXME(@JonasCir) #3733 remove '**/*.pom' once serverlib pom is renamed
2732
uses: actions/cache@v2
2833
with:
2934
path: ~/.m2
3035
key: ${{ runner.os }}-java-${{ matrix.java }}-m2-${{ hashFiles('**/pom.xml', '**/*.pom') }}
3136
restore-keys: ${{ runner.os }}-java-${{ matrix.java }}-m2
37+
3238
- name: Build with Maven
3339
working-directory: ./sormas-base
3440
run: mvn verify -B -ntp
35-

0 commit comments

Comments
 (0)