From eda59927b9418dfaa21b1f61509b07b3a1ed1f8e Mon Sep 17 00:00:00 2001 From: camapantap <69692273+camapantap@users.noreply.github.com> Date: Thu, 27 Aug 2020 02:22:18 +0700 Subject: [PATCH] Create scala.yml --- .github/workflows/scala.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..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