From f85ecd665afe60e4ee303acfbc7a8e576c167621 Mon Sep 17 00:00:00 2001 From: Enno Runne <458526+ennru@users.noreply.github.com> Date: Thu, 27 Jan 2022 13:21:04 +0100 Subject: [PATCH] CI: use GitHub actions; replace JDK11 with JDK17 --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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 00000000..1cbe5bf2 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: CI +on: + pull_request: + push: +jobs: + test: + strategy: + fail-fast: false + matrix: + include: + - os: ubuntu-latest + java: 8 + - os: windows-latest + java: 17 + runs-on: ${{ matrix.os }} + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup JDK + uses: actions/setup-java@v2 + with: + distribution: temurin + java-version: ${{ matrix.java }} + - name: Build and test + shell: bash + run: sbt -v +test +doc