Add GH workflow; JDK 11 #4
Workflow file for this run
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: mvn-verify | |
| on: [push, pull_request] | |
| jobs: | |
| mvn-verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '11' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Install yaz, swig | |
| run: sudo apt install libyaz-dev swig -y | |
| - name: Run the Maven verify phase | |
| run: mvn --batch-mode verify |