Skip to content

Various bug fixes and features (see desc) #169

Various bug fixes and features (see desc)

Various bug fixes and features (see desc) #169

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v2
- name: setup JDK 11
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: cache maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: build with maven
run: mvn -B package --file pom.xml
env:
GITHUB_TOKEN: ${{ secrets.DEPLOY_GITHUB_TOKEN }}