Skip to content

Commit e79c7c9

Browse files
committed
FEATURE: Add a workflow to check the code against virus
1 parent ac3382d commit e79c7c9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/gitavscan.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on: [push]
2+
3+
jobs:
4+
gitavscan:
5+
runs-on: ubuntu-latest
6+
name: AV scan
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v4
10+
with:
11+
fetch-depth: '0'
12+
13+
- name: Git AV Scan
14+
uses: djdefi/gitavscan@main

0 commit comments

Comments
 (0)