Skip to content

[maven-release-plugin] prepare for next development iteration #5

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #5

Workflow file for this run

name: ci
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
cache: false
- name: Install UPX
uses: crazy-max/ghaction-upx@v3
with:
install-only: true
- name: Maven Install
run: ./mvnw install -B -V -DskipTests -Dair.check.skip-all
- name: Maven Tests
run: ./mvnw install -B -P ci