From 1a529bc9f97ab8c398e00140b6cffbf3a4cd875f Mon Sep 17 00:00:00 2001 From: Martin Mauch Date: Wed, 5 Oct 2022 19:28:11 +0200 Subject: [PATCH] Run CI on Windows (#471) Run CI on Windows --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4da04e51..474383bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,12 @@ on: - cron: '0 21 * * 0' jobs: test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: fail-fast: false matrix: + os: [ubuntu-latest, windows-latest] include: - java: 8 scala: 2.12.8 @@ -26,6 +28,7 @@ jobs: java-version: "adopt@1.${{ matrix.java }}" - uses: coursier/cache-action@v5 - name: Build and test + shell: bash run: | sbt -v +publishLocal $(if [[ "${{matrix.scala}}" != "" ]] ; then echo "++${{matrix.scala}}!" ; fi) test scripted rm -rf "$HOME/.ivy2/local" || true