Fix optifine blurring GT creative tab icons by scaling logos by 16x (… #2302
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 formatting requirements | |
| name: Java Formatting | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| concurrency: | |
| group: formatting-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| formatting: | |
| name: Formatting | |
| 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 Spotless Formatting Check with Gradle | |
| run: ./gradlew spotlessCheck --warning-mode all --build-cache |