From bafe5ba457b51e49e640162a33fd3342baacd2aa Mon Sep 17 00:00:00 2001 From: Stefano Germano Date: Wed, 22 Jul 2020 13:22:00 +0200 Subject: Scala workflow - GitHub Actions --- .github/workflows/scala.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/scala.yml (limited to '.github/workflows/scala.yml') diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml new file mode 100644 index 0000000..f182d0c --- /dev/null +++ b/.github/workflows/scala.yml @@ -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 -- cgit v1.2.3