Put set_objective and set_score packets through component rewriter #581
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 | |
| on: [pull_request, push, workflow_dispatch] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| # Only run on PRs if the source branch is on a different repo. We do not need to run everything twice. | |
| if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # 5.0.0 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # 5.0.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| check-latest: true | |
| - name: Build with Gradle | |
| run: ./gradlew build --refresh-dependencies |