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

Switch to publishing on GitHub Actions (#27) #27

Switch to publishing on GitHub Actions (#27)

Switch to publishing on GitHub Actions (#27) #27

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- name: Set up JDK 1.8
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0
with:
java-version: 8
distribution: temurin
- name: Build with Maven
run: mvn package --file pom.xml