Skip to content

Keep main test in until Hytale server api is ready to move to #7

Keep main test in until Hytale server api is ready to move to

Keep main test in until Hytale server api is ready to move to #7

Workflow file for this run

name: Verifying Everything Compiles
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
java-version: '25'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
- name: Verify build is not broken
run: ./gradlew build
- name: Verify tests are passing
run: ./gradlew test