Skip to content

Add a CI workflow and a test pom #1

Add a CI workflow and a test pom

Add a CI workflow and a test pom #1

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v5
- name: Install Maven 3.0.5
run: mvn wrapper:wrapper -Dmaven=3.0.5
- 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