helma/.github/workflows/build.yml
Tobi Schäfer 808bc48ab9
All checks were successful
Build / build (push) Successful in 23s
Run the build workflow when itself has changed
2025-02-28 22:15:00 +01:00

22 lines
362 B
YAML

name: Build
on:
push:
paths:
- .github/workflows/build.yml
- build.gradle
- settings.gradle
- src/**
- launcher/build.gradle
- launcher/src/**
workflow_dispatch:
jobs:
build:
runs-on: antville
steps:
- uses: actions/checkout@v4
- name: Compile with Gradle
run: ./gradlew :compileJava