Skip to content

Commit

Permalink
added test action and print available flags
Browse files Browse the repository at this point in the history
  • Loading branch information
lalogiquefloue committed Nov 10, 2024
1 parent 584fa1f commit 3f0418f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,18 @@ jobs:
java-version: '17'
cache: 'maven'

- name: Build and Test with Maven
- name: Build and Test with Maven - Default Configuration
timeout-minutes: 15
run: ./mvnw -B verify

- name: Build and Test with Maven - Print available flags
timeout-minutes: 15
run: |
export MAVEN_OPTS="-XX:+PrintFlagsFinal"
./mvnw -B verify
unset MAVEN_OPTS
- name: Build and Test with Maven - Configuration 1
timeout-minutes: 15
run: ./mvnw -B verify

Expand Down

0 comments on commit 3f0418f

Please sign in to comment.