Skip to content

Introduce Bitag schema #98

Introduce Bitag schema

Introduce Bitag schema #98

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
jdk: [ 21 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk }}
distribution: liberica
cache: maven
- name: Build with Maven
run: mvn -V -B package -DskipTests
- name: Run Tests
run: mvn -V -B test
- name: Check JavaDoc
run: mvn -V -B javadoc:javadoc
- name: Check License
run: mvn -V -B license:check