chore(deps): update gradle to v9.1.0 #61
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build PR | |
on: [pull_request] | |
jobs: | |
build_pr: | |
if: github.repository_owner == 'OneLiteFeatherNET' | |
name: Build Pull Request Branch | |
runs-on: ${{ matrix.os }} | |
env: | |
ONELITEFEATHER_MAVEN_USERNAME: ${{ secrets.ONELITEFEATHER_MAVEN_USERNAME }} | |
ONELITEFEATHER_MAVEN_PASSWORD: ${{ secrets.ONELITEFEATHER_MAVEN_PASSWORD }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v5 | |
- name: Setup Java | |
uses: actions/setup-java@v5 | |
with: | |
distribution: temurin | |
java-version: 24 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Build on ${{ matrix.os }} | |
run: ./gradlew clean build test | |
# - name: Generate JaCoCo Coverage Report | |
# if: matrix.os == 'ubuntu-latest' | |
# run: ./gradlew jacocoTestReport | |
# - name: Jacoco Report to PR | |
# id: jacoco | |
# uses: madrapps/[email protected] | |
# with: | |
# paths: ${{ github.workspace }}/build/reports/jacoco/test/jacocoTestReport.xml | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
# min-coverage-overall: 40 | |
# min-coverage-changed-files: 60 | |
# title: Code Coverage | |
# update-comment: true |