Skip to content

Update GitHub Action Versions #11

Update GitHub Action Versions

Update GitHub Action Versions #11

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/[email protected]
- name: Setup Java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 23
- name: Setup Gradle
uses: gradle/actions/[email protected]
- name: Build
run: ./gradlew build