From 5aad8d21354412e96a3cb32eae0ff5ec99f04117 Mon Sep 17 00:00:00 2001 From: hrj Date: Fri, 2 Apr 2021 15:32:37 +0530 Subject: [PATCH] run CI for all branches --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b8e09aa --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: Core CI + +on: + push + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.11 + uses: actions/setup-java@v1 + with: + java-version: 1.11 + - name: Run tests + run: sbt test + - name: Run linter + run: sbt "scalafixAll --check"