Group all dependabot updates together in the same commit to avoid merge conflicts. #439
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: "JDK ${{ matrix.java }}" | |
strategy: | |
matrix: | |
java: [ 8, 11, 17, 21 ] | |
runs-on: ubuntu-latest | |
steps: | |
# Cancel any previous runs for the same branch that are still running. | |
- name: 'Cancel previous runs' | |
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa | |
with: | |
access_token: ${{ github.token }} | |
- name: 'Check out repository' | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- name: 'Set up JDK ${{ matrix.java }}' | |
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
cache: 'maven' | |
- name: 'Install' | |
shell: bash | |
run: mvn -B -U install clean --fail-never --quiet -DskipTests=true -Dinvoker.skip=true | |
- name: 'Test' | |
shell: bash | |
run: mvn -B verify |