From 883d05ddada917d9d863dcd51a21a271d84e80e7 Mon Sep 17 00:00:00 2001 From: Jarek Sacha Date: Wed, 1 Dec 2021 21:36:21 -0500 Subject: [PATCH] Test using GitHub actions #18 --- .github/workflows/scala.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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 0000000..cc0842d --- /dev/null +++ b/.github/workflows/scala.yml @@ -0,0 +1,22 @@ +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 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + - name: Run tests + run: sbt +test