Skip to content

Commit 0135454

Browse files
author
Dave Wichers
committed
Update CI script to run the unit tests and change Java version to
version 7. There are no unit tests (yet?) but it will at least force compilation, which I just broke in the last commit and CI did not detect that.
1 parent e91a7b1 commit 0135454

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/maven.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ jobs:
1111
- uses: actions/checkout@v2
1212
with:
1313
fetch-depth: 0
14-
- name: Set up JDK 1.8
14+
- name: Set up JDK 1.7
1515
uses: actions/setup-java@v1
1616
with:
17-
java-version: 1.8
17+
java-version: 1.7
1818
- name: Run spotless check
1919
run: mvn spotless:check
20+
- name: Run unit tests
21+
run: mvn test
22+

0 commit comments

Comments
 (0)