build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 #459
Workflow file for this run
This file contains 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/[email protected] | |
- name: Set up Java 17 | |
uses: actions/[email protected] | |
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/[email protected] | |
- name: Set up Java 17 | |
uses: actions/[email protected] | |
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 |