From 3a4d08396e330976f271dba21582b2ffa75ed082 Mon Sep 17 00:00:00 2001 From: Jason S <66403436+Naivefoolfml@users.noreply.github.com> Date: Tue, 18 Aug 2020 02:13:11 -0600 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 000000000..f182d0c09 --- /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