Merge branch 'master' into 24w45a #165
This file contains 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: Java CI with Gradle | |
on: | |
push: | |
paths: | |
- '**.java' | |
- '**.json' | |
- 'gradle**' | |
- 'build.gradle' | |
pull_request: | |
paths: | |
- '**.java' | |
- '**.json' | |
- 'gradle**' | |
- 'build.gradle' | |
# Makes it possible to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Java 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'microsoft' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
build-scan-publish: true | |
build-scan-terms-of-use-url: "https://gradle.com/help/legal-terms-of-use" | |
build-scan-terms-of-use-agree: "yes" | |
# Enable cache writing for NeoForge branches, since they don't benefit from the Fabric cache on master | |
cache-read-only: ${{ github.ref != 'refs/heads/master' && !contains(github.ref, 'neoforge') }} | |
- name: Generate and submit dependency graph | |
if: ${{ github.event_name == 'push' }} | |
uses: gradle/actions/dependency-submission@v4 | |
- name: Run tests and build | |
run: ./gradlew build --stacktrace --warning-mode=fail | |
- name: VirusTotal scan | |
if: ${{ github.event_name == 'push' }} | |
uses: crazy-max/ghaction-virustotal@v4 | |
with: | |
vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }} | |
files: | | |
./build/libs/*.jar | |
continue-on-error: true |