Add paper's EntityFertilizeEgg event #16
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: JUnit 25 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 'dev/**' | |
| pull_request: | |
| jobs: | |
| prepare: | |
| name: Parallelize Tests | |
| if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')" | |
| uses: ./.github/workflows/parallelize-tests.yml | |
| with: | |
| environments: 26.1.1 | |
| java_version: 25 | |
| parallel_jobs: 3 | |
| build: | |
| name: ${{ matrix.display }} | |
| needs: prepare | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: validate gradle wrapper | |
| uses: gradle/actions/wrapper-validation@v6 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '25' | |
| distribution: 'adopt' | |
| cache: gradle | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build Skript and run test scripts | |
| run: ./gradlew clean customTest -PtestEnvs="${{ matrix.envs }}" -PtestEnvJavaVersion=25 -Pjunit=true |