Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanGiles committed Jan 22, 2024
1 parent 414db86 commit 18a843b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,17 @@ jobs:
java-version: '21'
cache: 'maven'

- name: Build with Maven
run: mvn clean package
- name: Build
run: mvn --batch-mode -DskipTests package

- name: Test
run: mvn --batch-mode -Dmaven.test.failure.ignore=true test

- name: Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Maven Tests
path: target/surefire-reports/*.xml
reporter: java-junit
fail-on-error: true

0 comments on commit 18a843b

Please sign in to comment.