Skip to content

Commit 1a529bc

Browse files
authored
Run CI on Windows (#471)
Run CI on Windows
1 parent dbe137f commit 1a529bc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ on:
66
- cron: '0 21 * * 0'
77
jobs:
88
test:
9-
runs-on: ubuntu-latest
9+
runs-on: ${{ matrix.os }}
10+
1011
strategy:
1112
fail-fast: false
1213
matrix:
14+
os: [ubuntu-latest, windows-latest]
1315
include:
1416
- java: 8
1517
scala: 2.12.8
@@ -26,6 +28,7 @@ jobs:
2628
java-version: "adopt@1.${{ matrix.java }}"
2729
- uses: coursier/cache-action@v5
2830
- name: Build and test
31+
shell: bash
2932
run: |
3033
sbt -v +publishLocal $(if [[ "${{matrix.scala}}" != "" ]] ; then echo "++${{matrix.scala}}!" ; fi) test scripted
3134
rm -rf "$HOME/.ivy2/local" || true

0 commit comments

Comments
 (0)