Skip to content

Add LICENSE

Add LICENSE #38

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
concurrency:
# Non-PR builds have singleton concurrency groups.
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.number || github.sha }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java-version:
- 21
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
distribution: zulu
cache: maven
- name: Install
run: mvn install -B -DskipTests
- name: Run Tests
run: mvn -B test