2019-08-20 15:12:26 +01:00
|
|
|
name: Scala CI
|
|
|
|
|
|
2020-02-12 13:26:01 -05:00
|
|
|
on:
|
|
|
|
|
push:
|
2020-07-13 12:12:41 -07:00
|
|
|
branches: [ $default-branch ]
|
2020-02-12 13:26:01 -05:00
|
|
|
pull_request:
|
2020-07-13 12:12:41 -07:00
|
|
|
branches: [ $default-branch ]
|
2019-08-20 15:12:26 +01:00
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
2019-10-16 12:40:14 -07:00
|
|
|
|
2019-08-20 15:12:26 +01:00
|
|
|
runs-on: ubuntu-latest
|
2019-10-16 12:40:14 -07:00
|
|
|
|
2019-08-20 15:12:26 +01:00
|
|
|
steps:
|
2019-12-24 14:22:22 -08:00
|
|
|
- uses: actions/checkout@v2
|
2019-09-09 11:12:23 +01:00
|
|
|
- name: Set up JDK 1.8
|
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
|
with:
|
|
|
|
|
java-version: 1.8
|
2019-08-20 15:12:26 +01:00
|
|
|
- name: Run tests
|
|
|
|
|
run: sbt test
|