Files

23 lines
371 B
YAML
Raw Permalink Normal View History

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
- name: Set up JDK 11
uses: actions/setup-java@v2
2019-09-09 11:12:23 +01:00
with:
java-version: '11'
2021-03-11 12:56:09 +03:00
distribution: 'adopt'
2019-08-20 15:12:26 +01:00
- name: Run tests
run: sbt test