From 4103e119d3ea1fa94f1b005188611b442bac6e11 Mon Sep 17 00:00:00 2001 From: Chua Chee Seng Date: Mon, 15 Jul 2024 16:43:24 +0800 Subject: [PATCH] Added ci.yml for CI build. --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 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..e24adcf --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup JDK + uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 8 + - name: Build and Test + run: sbt -v +test