File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments