Skip to content

Commit 2ffbb7b

Browse files
committed
adding system dependencies
1 parent 29ba6cc commit 2ffbb7b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/scan.yml

+11
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ jobs:
5656
- name: Checkout repository
5757
uses: actions/checkout@v4
5858

59+
- name: Install dependencies
60+
run: |
61+
sudo apt update
62+
sudo apt install -y libssl-dev pkg-config clang llvm pkg-config nettle-dev
63+
5964
# Set up Rust
6065
- name: Set up Rust
6166
uses: actions-rs/toolchain@v1
@@ -67,6 +72,7 @@ jobs:
6772
- name: Install cargo-llvm-cov
6873
uses: taiki-e/install-action@cargo-llvm-cov
6974

75+
7076
- name: Install Clippy
7177
run: rustup component add clippy
7278

@@ -106,6 +112,11 @@ jobs:
106112
- name: Checkout repository
107113
uses: actions/checkout@v4
108114

115+
- name: Install dependencies
116+
run: |
117+
sudo apt update
118+
sudo apt install -y libssl-dev pkg-config clang llvm pkg-config nettle-dev
119+
109120
# Set up Rust
110121
- name: Set up Rust
111122
uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)