Skip to content

Merge pull request #2 from dennisvang/issue1-maven-central #10

Merge pull request #2 from dennisvang/issue1-maven-central

Merge pull request #2 from dennisvang/issue1-maven-central #10

Workflow file for this run

name: Maven CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# temurin LTS versions
version: [17, 21]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: ${{ matrix.version }}
distribution: 'temurin'
cache: maven
- name: Maven build (skip gpg signing)
run: mvn --batch-mode --update-snapshots --fail-fast -Dgpg.skip tidy:check com.mycila:license-maven-plugin:check com.github.spotbugs:spotbugs-maven-plugin:check verify