helma/.github/workflows/build.yml

23 lines
362 B
YAML
Raw Normal View History

2025-02-28 21:58:08 +01:00
name: Build
on:
push:
paths:
- .github/workflows/build.yml
2025-02-28 21:58:08 +01:00
- 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