Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

CI and improvements on Bluetooth errors #4

CI and improvements on Bluetooth errors

CI and improvements on Bluetooth errors #4

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.8
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: lint
uses: gradle/gradle-build-action@v2
with:
arguments: lintDebug
build-root-directory: ./
test:
needs: [lint]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run Unit Tests
run: ./gradlew test