Skip to content

Set version to 3-SNAPSHOT #2

Set version to 3-SNAPSHOT

Set version to 3-SNAPSHOT #2

Workflow file for this run

name: ci
on:
push:
branches:
- main
defaults:
run:
shell: bash --noprofile --norc -euo pipefail {0}
env:
# Use Maven wrapper from repo with Maven version and other configs
MAVEN: ./mvnw -B
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: $MAVEN clean verify