Skip to content

chore(deps): Update gradle and github actions #176

chore(deps): Update gradle and github actions

chore(deps): Update gradle and github actions #176

Workflow file for this run

name: "build"
on:
pull_request:
push:
branches-ignore: [ "main" ]
jobs:
build:
# Only run on PRs if the source branch is on someone else's repo
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
runs-on: "${{ matrix.os }}"
steps:
- name: "setup env"
id: "setup"
uses: "KyoriPowered/ci-cookbook/actions/setup-java-env@f3b9a3fbb31e9f4320d855e7be17b028522e87be" # 2026.02.07
with:
runtime_version: 21
publishing_branch_regex: "main"
gradle_warning_mode: "all"
- name: "build"
run: "./gradlew build"