Skip to content

Update Maven to 3.6.3 on the CI #34

Update Maven to 3.6.3 on the CI

Update Maven to 3.6.3 on the CI #34

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '8'
- name: Install Maven 3.6.3
run: mvn wrapper:wrapper -Dmaven=3.6.3
- name: Install with the release profile
run: ./mvnw -f test/pom.xml install -Prelease
- name: Build Maven site
run: ./mvnw -f test/pom.xml site