Skip to content

Fix workflow

Fix workflow #2

Workflow file for this run

name: Build
on:
push:
branches:
- main
- development
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Java 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
- name: Build with Gradle
run: ./gradlew check --info