diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10e74b4..c930d46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install YARA + run: sudo apt-get update && sudo apt-get install -y libyara-dev + - name: Install Rust uses: dtolnay/rust-toolchain@stable with: @@ -60,6 +63,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install YARA + run: sudo apt-get update && sudo apt-get install -y libyara-dev + - name: Install Rust uses: dtolnay/rust-toolchain@stable @@ -119,6 +125,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install YARA + run: sudo apt-get update && sudo apt-get install -y libyara-dev + - name: Run cargo-deny uses: EmbarkStudios/cargo-deny-action@v1 with: diff --git a/Cargo.lock b/Cargo.lock index e9023b1..eb4c745 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 4 +version = 3 [[package]] name = "aho-corasick"