From 568617e52843c690d6066c07c588307ab6a8f079 Mon Sep 17 00:00:00 2001 From: Andrey Stolyarov Date: Sun, 8 Dec 2024 21:07:32 +0300 Subject: [PATCH] Add test workflow --- .github/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..9e5b1f5 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: Test + +on: + pull_request: + branches: + - main + +jobs: + test: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 11 + cache: sbt + - run: sbt test