Add basic CI workflow that runs tests on pull requests

Fixes #27
This commit is contained in:
thunderbiscuit 2022-03-18 14:10:34 -04:00
parent e139e3d999
commit f1f69c6fdf
No known key found for this signature in database
GPG Key ID: 88253696EB836462

22
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Tests
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out PR branch
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 11
- name: Run Android tests
run: ./gradlew :android:test --console=rich
- name: Run JVM tests
run: ./gradlew :jvm:test --console=rich