Fix the JEI green overlay appearing in cheat mode on phantom slots and fix the crafting station slots not having a hover overlay #2394
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
| # Runs tests | |
| name: Java Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| concurrency: | |
| group: tests-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| env: | |
| DISABLE_BUILDSCRIPT_UPDATE_CHECK: true | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Build | |
| uses: ./.github/actions/build_setup | |
| - name: Run Tests with Gradle | |
| run: ./gradlew test --warning-mode all --build-cache |