Skip to content

Implement tests via GitHub actions (#602) #83

Implement tests via GitHub actions (#602)

Implement tests via GitHub actions (#602) #83

Workflow file for this run

name: Maven Verify
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: mvn -B verify --file pom.xml
env:
HYPIXEL_API_KEY: ${{ secrets.HYPIXEL_API_KEY }}