Merge pull request #166 from hal/dependabot/maven/org.apache.maven.pl… #528
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: Verify Codebase | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
verify: | |
name: Verify Codebase | |
runs-on: ubuntu-latest | |
env: | |
MVN: ./mvnw --show-version --batch-mode --no-transfer-progress | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
cache: maven | |
- run: $MVN verify |