Merge pull request #65 from oysteing/commons-io_2.18.0 #121
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: Axon Open Admin | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [ 11, 17 ] | |
| name: Build and tests on JDK ${{ matrix.java }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/[email protected] | |
| with: | |
| distribution: 'zulu' | |
| cache: 'maven' | |
| java-version: ${{ matrix.java }} | |
| - name: Build and verify | |
| run: ./mvnw clean verify |