merge queue: embarking development (a2e09f1), #888 and #887 together #709
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: Test | |
| on: [ pull_request ] | |
| jobs: | |
| run-tests: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.3 | |
| - name: Set up Java 17 | |
| uses: actions/setup-java@v5.2.0 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| cache: 'maven' | |
| - name: Run tests | |
| # note: `package` is used instead of `test` in order to support MultiReleaseJar | |
| run: mvn -B package | |
| check-javadocs: | |
| name: Check Javadocs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.3 | |
| - name: Set up Java 17 | |
| uses: actions/setup-java@v5.2.0 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| cache: 'maven' | |
| - name: Install artifacts | |
| run: mvn -B install -Dmaven.test.skip=true | |
| - name: Try to generate Javadocs | |
| run: mvn -B javadoc:javadoc |