Skip to content

Remove CI workflow

Remove CI workflow #37

Workflow file for this run

name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
steps:
- name: Check out code
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Java ${{ matrix.java }}
uses: actions/[email protected]
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build
run: ./mvnw clean package