feat(all): Add ABK desktop shell and Android agent #552
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: PR Check | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: pr-check-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| unit-tests: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Prepare workspace permissions | |
| run: | | |
| sudo mkdir -p "$GITHUB_WORKSPACE/.gradle" "$GITHUB_WORKSPACE/app/build" | |
| sudo chmod -R a+rwX "$GITHUB_WORKSPACE" | |
| - name: Run JVM unit tests | |
| run: docker compose run --rm --build unit-tests | |
| pr-check: | |
| name: PR Check | |
| runs-on: ubuntu-latest | |
| needs: | |
| - unit-tests | |
| if: always() | |
| steps: | |
| - name: Verify required jobs | |
| run: | | |
| if [ "${{ needs.unit-tests.result }}" != "success" ]; then | |
| echo "::error::Unit Tests finished with result: ${{ needs.unit-tests.result }}" | |
| exit 1 | |
| fi |