From 5083886cb17f12630d1789bdc0fe2269475a7b46 Mon Sep 17 00:00:00 2001 From: Akron Date: Thu, 5 Oct 2023 09:44:29 +0200 Subject: [PATCH] Add windows CI Change-Id: I2cd2a8680e945f5f7751cf50cadca368484dd8e4 --- .github/workflows/windows_ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/windows_ci.yml diff --git a/.github/workflows/windows_ci.yml b/.github/workflows/windows_ci.yml new file mode 100644 index 00000000..2409e1f1 --- /dev/null +++ b/.github/workflows/windows_ci.yml @@ -0,0 +1,21 @@ +name: CI Windows + +on: [push, pull_request] + +jobs: + build: + runs-on: windows-latest + steps: + - name: Set git to use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - name: Checkout Koral + uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v1 + with: + java-version: 11 + + - name: Build and install Koral + run: mvn --file pom.xml install