Skip to content

Bump the maven-dependencies group with 2 updates #71

Bump the maven-dependencies group with 2 updates

Bump the maven-dependencies group with 2 updates #71

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build
run: ./mvnw -B compile --file pom.xml
- name: Run Tests
run: ./mvnw -B test --file pom.xml
- name: Deploy Javadoc to GitHub Pages
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: MathieuSoysal/Javadoc-publisher.yml@v3.0.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
javadoc-branch: javadoc
java-version: 21
project: maven