Skip to content

Moved cover.png into /github #465

Moved cover.png into /github

Moved cover.png into /github #465

# Build and test the project using Maven's package command
# To be triggered on every push and pull request
name: Build and test
on: [push, pull_request]
jobs:
package:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '18'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml