Add SanityCheck#EqualityRulesRecipes
#19
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 Pull Request 🏭️ | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build 🏗 | |
| # if: ${{ github.repository == 'spring-projects/spring-boot' }} | |
| runs-on: ${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }} | |
| steps: | |
| - name: Checkout Code 📥 | |
| uses: actions/checkout@v6 | |
| - name: Build 📦 | |
| id: build | |
| uses: ./.github/actions/build | |
| # - name: Log Potentially Cancelled JVM Thread Dumps 📋 | |
| # if: cancelled() | |
| # uses: ./.github/actions/print-jvm-thread-dumps | |
| # - name: Upload Build Report 📊 | |
| # if: failure() | |
| # uses: actions/upload-artifact@v6 | |
| # with: | |
| # name: build-reports | |
| # path: '**/build/reports/' | |
| - name: Sanity Check 🕊️ | |
| run: ./gradlew rewriteDryRun -Dorg.gradle.jvmargs=-Xmx4G |