Skip to content

CI

CI #1

Workflow file for this run

name: CI
on:
workflow_dispatch:
workflow_call:
inputs:
branch:
required: true
type: string
jdk:
default: 8
type: string
os:
default: ubuntu-latest
type: string
jobs:
Test:
name: Run tests
runs-on: ${{ inputs.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ inputs.branch }}
- name: Install JDK
uses: actions/setup-java@v4
with:
java-version: |
${{ inputs.jdk }}
17
distribution: temurin
- name: Run tests
run: mvn -s .github/maven-ci-settings.xml -q clean verify -B