Skip to content

Commit

Permalink
Run CI on Windows (#471)
Browse files Browse the repository at this point in the history
Run CI on Windows
  • Loading branch information
nightscape authored Oct 5, 2022
1 parent dbe137f commit 1a529bc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 1a529bc

Please sign in to comment.