Skip to content

Merge branch 'main' of https://github.com/kylecorry31/Trail-Sense #5469

Merge branch 'main' of https://github.com/kylecorry31/Trail-Sense

Merge branch 'main' of https://github.com/kylecorry31/Trail-Sense #5469

Workflow file for this run

name: Android CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: set up JDK 17
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 17
- name: Make gradlew executable
run: chmod +x gradlew
- name: Build
run: ./gradlew assembleDebug
- name: Run unit tests
run: ./gradlew testDebugUnitTest