Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Build PR

on: [pull_request]
on:
pull_request:
workflow_dispatch:

permissions:
contents: read
Expand All @@ -10,9 +12,15 @@ permissions:
jobs:
build:
# Reuse the OneLiteFeather org build workflow (Java 25, OS matrix, tests, coverage).
#
# force-build on a manual run: the reusable workflow decides whether to build from a
# dorny/paths-filter comparison, and that comparison has no base outside a pull request. A
# manual run is one somebody asked for regardless of what changed, so it skips the filter
# instead of depending on what the filter would answer without a base.
uses: OneLiteFeatherNET/workflows/.github/workflows/gradle-build-pr.yml@v2.4.0
with:
java-version: "25"
java-distribution: "temurin"
run-tests: true
force-build: ${{ github.event_name == 'workflow_dispatch' }}
secrets: inherit
Loading