mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
Add CI
This commit is contained in:
parent
dd6b788927
commit
e57ff6e881
1 changed files with 23 additions and 0 deletions
23
.github/workflows/android.yml
vendored
Normal file
23
.github/workflows/android.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Android CI
|
||||
# from https://medium.com/@wkrzywiec/github-actions-for-android-first-approach-f616c24aa0f9
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
# - '!master'
|
||||
# - '!release*'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Run Unit Tests
|
||||
runs-on: ubuntu-18.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: set up JDK 1.8
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 1.8
|
||||
- name: Unit tests
|
||||
run: bash ./gradlew test --stacktrace
|
||||
Loading…
Add table
Add a link
Reference in a new issue