Skip to content

Misc fixes to the introduction presentation. #60

Misc fixes to the introduction presentation.

Misc fixes to the introduction presentation. #60

Workflow file for this run

name: Build and run CI checks
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
java_version: [ '8', '11', '21' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java_version }}
distribution: 'temurin'
cache: maven
- name: Build package
run: mvn -B -Dgpg.skip=true verify site