Skip to content

Update xr

Update xr #1409

Workflow file for this run

name: Android Build
# This will cancel any in progress workflows for the same PR, if
# multiple pushes happen in quick succession.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
push:
branches:
- development
pull_request:
jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/workflow_setup
- name: Build Project
run: ./gradlew assemble
- name: Run Tests
run: ./gradlew test
- name: Lint Checks
run: ./gradlew detektAll lintKotlin lint