Skip to content

Commit 5084888

Browse files
authored
Merge pull request #1 from daizutabi/feature-ci
Add Windows CI
2 parents 489689a + a57094c commit 5084888

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci-integration.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,17 @@ jobs:
2424
os:
2525
- ubuntu-latest
2626
- macOS-latest
27+
- windows-latest
2728
arch:
2829
- x64
2930
group:
3031
- Integration
3132
steps:
3233
- uses: actions/checkout@v2
34+
- uses: KyleMayes/install-llvm-action@v2
35+
with:
36+
version: "17"
37+
if: matrix.os == 'windows-latest'
3338
- uses: julia-actions/setup-julia@latest
3439
with:
3540
version: ${{ matrix.version }}

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
os:
2525
- ubuntu-latest
2626
- macOS-latest
27+
- windows-latest
2728
arch:
2829
- x64
2930
group:
@@ -34,6 +35,10 @@ jobs:
3435
os: ubuntu-latest
3536
steps:
3637
- uses: actions/checkout@v2
38+
- uses: KyleMayes/install-llvm-action@v2
39+
with:
40+
version: "17"
41+
if: matrix.os == 'windows-latest'
3742
- uses: julia-actions/setup-julia@latest
3843
with:
3944
version: ${{ matrix.version }}

0 commit comments

Comments
 (0)