Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Add CI workflow

Add CI workflow #2

Workflow file for this run

name: Java CI
on: [ push ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ !contains(github.ref, 'main') }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout self
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
architecture: x64
cache: maven
- name: Build with Maven
run: mvn clean install -DskipTests