Skip to content

Commit 5875283

Browse files
committed
fix action
1 parent 4344ede commit 5875283

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/clippy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: clippy
22-
run: cargo clippy --all-targets --all-features -- -D warnings
22+
run: |
23+
sudo apt install libblas-dev liblapack-dev -y
24+
cargo clippy --all-targets --all-features -- -D warnings

.github/workflows/test-dftd4-src.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- name: run tests directly
1515
run: |
16-
apt install libblas-dev liblapack-dev -y
16+
sudo apt install libblas-dev liblapack-dev -y
1717
cd dftd4-src
1818
export DFTD4_SRC_DEV=1
1919
cargo test --test "*" -vv --features="build_from_source static" -- --nocapture
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525
- name: run tests directly
2626
run: |
27-
apt install libblas-dev liblapack-dev -y
27+
sudo apt install libblas-dev liblapack-dev -y
2828
cd dftd4-src
2929
cargo test --test "*" -vv --features="build_from_source" -- --nocapture
3030

.github/workflows/test-dftd4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: conda-incubator/setup-miniconda@v3
1515
- name: run tests directly
1616
run: |
17-
apt install libblas-dev liblapack-dev -y
17+
sudo apt install libblas-dev liblapack-dev -y
1818
cd dftd4
1919
conda install dftd4-python -c conda-forge
2020
ls /usr/share/miniconda/lib

0 commit comments

Comments
 (0)