Fix Tron dynamic-energy penalty double-count and surface failed simul… #1421
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: Android Tests | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| env: | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| jobs: | |
| unit_test: | |
| name: Unit Tests | |
| runs-on: macos-26 | |
| env: | |
| UNIT_TESTS: "true" | |
| defaults: | |
| run: | |
| working-directory: android | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| submodules: recursive | |
| - name: Setup Android CI | |
| uses: ./.github/actions/setup-android-ci | |
| - name: Bootstrap | |
| run: just bootstrap | |
| - name: Clean Android build outputs | |
| run: just clean | |
| - name: Build | |
| run: just build | |
| env: | |
| GPR_USERNAME: ${{ github.actor }} | |
| GPR_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Run unit tests | |
| run: just test | |
| env: | |
| GPR_USERNAME: ${{ github.actor }} | |
| GPR_TOKEN: ${{ secrets.GITHUB_TOKEN }} |