Skip to content

Commit 4d529a4

Browse files
committed
.github/workflows/rust/yml install lapack
1 parent 2a6992b commit 4d529a4

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/rust.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@ name: Rust
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: ["main"]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: ["main"]
88

99
env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
1313
build:
14-
1514
runs-on: ubuntu-latest
1615

1716
steps:
18-
- uses: actions/checkout@v4
19-
- name: Build
20-
run: cargo build --all-features --verbose
21-
- name: Run tests
22-
run: cargo test --all-features --verbose
17+
- uses: actions/checkout@v4
18+
- name: Install LAPACK
19+
run: sudo apt-get update && sudo apt-get install -y liblapack-dev
20+
- name: Build
21+
run: cargo build --all-features --verbose
22+
- name: Run tests
23+
run: cargo test --all-features --verbose

0 commit comments

Comments
 (0)