Create .github action for CI

This commit is contained in:
hrj 2020-07-04 16:23:58 +05:30 committed by GitHub
parent ab6abaf5c0
commit 08ffb78e31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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