Skip to content

Merge pull request #12 from OneLiteFeatherNET/renovate/xyz.jpenilla.r… #22

Merge pull request #12 from OneLiteFeatherNET/renovate/xyz.jpenilla.r…

Merge pull request #12 from OneLiteFeatherNET/renovate/xyz.jpenilla.r… #22

Workflow file for this run

name: Build PR

Check failure on line 1 in .github/workflows/build-pr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-pr.yml

Invalid workflow file

(Line: 7, Col: 5): Unexpected value 'description'
on: [pull_request]
jobs:
build_pr:
if: github.repository_owner == 'OneLiteFeatherNET'
name: Build Pull Request Branch
description: This job builds the pull request branch on different operating systems.
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout Repository
uses: actions/checkout@v5
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v3
- name: Setup Java
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 21
- name: Build on ${{ matrix.os }}
run: ./gradlew clean build