Skip to content

Remove FUNDING.yml in favor of centralized org-level configuration #55

Remove FUNDING.yml in favor of centralized org-level configuration

Remove FUNDING.yml in favor of centralized org-level configuration #55

Workflow file for this run

# Builds every branch other than main, so that any change pushed to GitHub in a feature branch can be built and tested
name: Build branch
on:
push:
branches-ignore:
- main
pull_request:
branches-ignore:
- main
jobs:
build_branch:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v5.0.0
- name: Setup Java
uses: actions/setup-java@v5.0.0
with:
distribution: 'temurin'
java-version: 23
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5.0.0
- name: Build
run: ./gradlew build