Skip to content

CI and improvements on Bluetooth errors #1

CI and improvements on Bluetooth errors

CI and improvements on Bluetooth errors #1

Workflow file for this run

name: Build lint checker report and unit tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Java JDK
uses: actions/setup-java@v1
with:
java-version: 1.7
- name: Build Lint
run: ./gradlew lintDebug
test:
needs: [lint]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run Unit Tests
run: ./gradlew test