Skip to content

Update Extensions section in README (#54) #89

Update Extensions section in README (#54)

Update Extensions section in README (#54) #89

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 21]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: temurin
- name: Build
run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- name: Test
run: mvn test -B