Skip to content

Commit 28814ce

Browse files
committed
Add windows and macOS
1 parent 7c058f5 commit 28814ce

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/rust.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ on:
77
pull_request: {}
88

99
jobs:
10+
windows-intel-mkl:
11+
runs-on: windows-2019
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: actions-rs/cargo@v1
15+
with:
16+
command: test
17+
args: --features=intel-mkl --no-default-features
18+
19+
macos-intel-mkl:
20+
runs-on: macos-10.15
21+
steps:
22+
- uses: actions/checkout@v1
23+
- uses: actions-rs/cargo@v1
24+
with:
25+
command: test
26+
args: --features=intel-mkl --no-default-features
27+
1028
linux-intel-mkl:
1129
runs-on: ubuntu-18.04
1230
steps:

0 commit comments

Comments
 (0)