Skip to content

Merge pull request #88 from tony19/renovate/actions-checkout-digest #170

Merge pull request #88 from tony19/renovate/actions-checkout-digest

Merge pull request #88 from tony19/renovate/actions-checkout-digest #170

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
jdk: [ '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21' ]
name: JDK ${{ matrix.jdk }}
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.jdk }}
cache: 'maven'
- run: mvn verify -Dgpg.skip