Merge pull request #67 from merkle-open/renovate/mvn.dependency.plugi… #87
This file contains hidden or 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: CI SNAPSHOT | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| verify: | |
| name: Verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout source code | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| # Setup Java environment | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: zulu | |
| # Run maven verify (includes unit tests) | |
| - name: Maven verify | |
| run: mvn verify --batch-mode |