Skip to content

Use polyglot-release for releasing #71

Use polyglot-release for releasing

Use polyglot-release for releasing #71

Workflow file for this run

name: Build
on:
# Trigger on every pull request and on push
# to the `main` branch.
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: macos-13
steps:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Checkout the code
uses: actions/checkout@v4
- name: Build the app
run: ./gradlew build --stacktrace -x lint
- name: run tests
uses: ./.github/actions/android-test