Skip to content

Commit 73c03bb

Browse files
committed
Add GitHub Actions setting
1 parent 44a3e8d commit 73c03bb

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/rust.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Rust
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
linux-intel-mkl:
7+
runs-on: ubuntu-18.04
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: actions-rs/cargo@v1
11+
with:
12+
command: test
13+
args: --features=intel-mkl --no-default-features
14+
15+
linux-netlib:
16+
runs-on: ubuntu-18.04
17+
steps:
18+
- uses: actions/checkout@v1
19+
- name: apt
20+
run: sudo apt update && sudo apt install -y gfortran
21+
- uses: actions-rs/cargo@v1
22+
with:
23+
command: test
24+
args: --features=netlib --no-default-features
25+
26+
linux-openblas:
27+
runs-on: ubuntu-18.04
28+
steps:
29+
- uses: actions/checkout@v1
30+
- name: apt
31+
run: sudo apt update && sudo apt install -y gfortran
32+
- uses: actions-rs/cargo@v1
33+
with:
34+
command: test
35+
args: --features=openblas --no-default-features

0 commit comments

Comments
 (0)