Build and test (experimental branch) #425
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: Build and test (experimental branch) | |
| on: | |
| schedule: | |
| # - cron: "0 0-23/6 * * *" | |
| - cron: "0 17 * * 5" | |
| # - cron: "0 4,16 30 9 *" | |
| jobs: | |
| build-and-test-with-Java-8-and-later: | |
| name: Build -> Test (JVM ${{ matrix.java }}, ${{ matrix.os }}) | |
| strategy: | |
| fail-fast: true | |
| max-parallel: 15 | |
| matrix: | |
| architecture: [x64] | |
| os: [windows-latest, macOS-latest, ubuntu-latest] | |
| java: [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] | |
| exclude: | |
| - os: ubuntu-latest | |
| java: 10 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| ref: experimental | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: 'zulu' | |
| architecture: ${{ matrix.architecture }} | |
| - name: Build and test | |
| run: mvn -B clean test -DskipTests=false --file pom.xml |