Skip to content

Commit 8e7c341

Browse files
Update unit-tests.yml
1 parent b71b2fb commit 8e7c341

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/unit-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Unit Tests with Code Coverage
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [master]
66
pull_request:
7-
branches: [ "master" ]
7+
branches: [master]
88

99
jobs:
1010
build-and-test:
@@ -13,10 +13,14 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515

16+
1617
- name: Set up JDK
1718
uses: actions/setup-java@v3
1819
with:
1920
java-version: '17'
21+
distribution: 'temurin'
22+
23+
2024
- name: Build and Test with Code Coverage
2125
run: |
2226
./mvnw clean test jacoco:report

0 commit comments

Comments
 (0)