From 6efa6dce8393f1a5fdcee889da2a4cc00a5fe799 Mon Sep 17 00:00:00 2001 From: xuwei-k <6b656e6a69@gmail.com> Date: Tue, 13 May 2025 18:55:38 +0900 Subject: [PATCH] add GitHub Actions --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 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..1ee0364 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,15 @@ +on: + pull_request: + push: +jobs: + test: + runs-on: ubuntu-latest + timeout-minutes: 20 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + java-version: 8 + distribution: temurin + - uses: sbt/setup-sbt@v1 + - run: sbt '+ Test/compile' '+ test'