Add NamedFirstXAResource for completeness of configuration. Remove obsolete unnamed implementations as resources are named by default. #801
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: Java CI with Maven | |
| on: | |
| push: | |
| branches: '**' | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| java: [ 25, 21, 17 ] | |
| os: [ ubuntu-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| cache: 'maven' | |
| java-version: ${{ matrix.java }} | |
| distribution: 'temurin' | |
| - name: Install | |
| run: ./mvnw install -DskipTests | |
| - name: Test | |
| run: ./mvnw -Ptestcontainers verify |