Add sbt testing github action

This commit is contained in:
R. Tyler Croy 2020-03-22 10:43:53 -07:00 committed by GitHub
parent 5d30ccd8ac
commit 46f352385c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

21
.github/workflows/scala.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Scala CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Run tests
run: sbt test