From 6d58dbb8efe780b88ef66ab36993a7e2b1788383 Mon Sep 17 00:00:00 2001 From: Adrien Bestel <47319500+abestel@users.noreply.github.com> Date: Thu, 24 Oct 2019 19:05:22 +0100 Subject: [PATCH] Update scala.yml --- .github/workflows/scala.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/scala.yml diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml new file mode 100644 index 00000000..a539bc57 --- /dev/null +++ b/.github/workflows/scala.yml @@ -0,0 +1,17 @@ +name: Scala CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Run tests + run: sbt +test