add intentional problem #99
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: Java CI with Gradle | |
| on: | |
| push: | |
| paths-ignore: | |
| - '*.md' | |
| - '*.txt' | |
| pull_request: | |
| paths-ignore: | |
| - '*.md' | |
| - '*.txt' | |
| workflow_dispatch: | |
| jobs: | |
| build-forge: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| show-progress: false | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: adopt | |
| java-version: 21 | |
| - name: Build (Forge) | |
| run: ./gradlew build | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: MouseTweaks-Forge | |
| path: build/libs/ | |
| if-no-files-found: error | |
| build-neoforge: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| show-progress: false | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: adopt | |
| java-version: 21 | |
| - name: Build (NeoForge) | |
| run: ./gradlew --build-file build-neoforge.gradle build | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: MouseTweaks-NeoForge | |
| path: build/libs/ | |
| if-no-files-found: error | |
| build-fabric: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| show-progress: false | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: adopt | |
| java-version: 21 | |
| - name: Build (Fabric) | |
| run: ./gradlew --build-file build-fabric.gradle build | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: MouseTweaks-Fabric | |
| path: build/libs/ | |
| if-no-files-found: error | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| show-progress: false | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: adopt | |
| java-version: 21 | |
| - name: Build testmod | |
| run: ./gradlew --build-file build-fabric.gradle testmodClientClasses | |
| - name: Run gametest | |
| uses: GabrielBB/xvfb-action@v1 | |
| with: | |
| run: ./gradlew --build-file build-fabric.gradle runClientGametest | |
| - name: Upload screenshot | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: screenshot | |
| path: run/screenshots/ | |
| if-no-files-found: error |