From 5a40289eacbf88bd21170cbc5ebc65f5aa2bcc4e Mon Sep 17 00:00:00 2001 From: ljcornel Date: Wed, 14 Dec 2022 10:37:38 +0100 Subject: [PATCH] Add ClamAV workflow --- .github/workflows/virus-scan.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/virus-scan.yaml diff --git a/.github/workflows/virus-scan.yaml b/.github/workflows/virus-scan.yaml new file mode 100644 index 00000000..ada7b292 --- /dev/null +++ b/.github/workflows/virus-scan.yaml @@ -0,0 +1,19 @@ +name: "ClamAV" + +on: + workflow_dispatch: + +jobs: + clamavscan: + runs-on: ubuntu-latest + name: ClamAV Scan + + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: '0' + + - name: Git AV Scan + uses: djdefi/gitavscan@main + with: + full: '--full'