Merge pull request #64 from JayPi4c/63-rewrite-to-use-java-9+-module-… #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Project | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- 'pom.xml' | |
jobs: | |
verify: | |
name: Verify project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
- name: Verify with Maven | |
run: ./mvnw --batch-mode --update-snapshots verify |