Skip to content

Bump styfle/cancel-workflow-action from 0.13.0 to 0.13.1 in the github-actions group #658

Bump styfle/cancel-workflow-action from 0.13.0 to 0.13.1 in the github-actions group

Bump styfle/cancel-workflow-action from 0.13.0 to 0.13.1 in the github-actions group #658

Workflow file for this run

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@d07a454dad7609a92316b57b23c9ccfd4f59af66
with:
access_token: ${{ github.token }}
- name: 'Check out repository'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
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