commit 39a03f6bf7aaf4c16776081b105da71584de294b
parent 11fe40cc19c6ef7cde80b772a0df8b9a5582022d
Author: MTRNord <mtrnord1@gmail.com>
Date: Sun, 1 Oct 2023 13:41:38 +0200
Install missing dependencies
Diffstat:
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
@@ -149,7 +149,9 @@ jobs:
check-latest: true
cache: yarn
- name: Install dependencies
- run: yarn install
+ run: |
+ brew install yara
+ yarn install
- name: Download artifacts
uses: actions/download-artifact@v3
with:
@@ -181,7 +183,9 @@ jobs:
check-latest: true
cache: yarn
- name: Install dependencies
- run: yarn install
+ run: |
+ sudo apt-get install -y yara
+ yarn install
- name: Download artifacts
uses: actions/download-artifact@v3
with: