We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6e82e6 commit 06e85e3Copy full SHA for 06e85e3
.github/workflows/tests.yml
@@ -35,10 +35,11 @@ jobs:
35
run: python -m pip install -e .
36
37
- name: Install and update clamav engine
38
- run: sudo apt update
39
- run: sudo apt-get install clamav-daemon clamav-freshclam clamav-unofficial-sigs --yes
40
- run: sudo freshclam --verbose
41
- run: systemctl restart clamav-daemon.service
+ run: |
+ sudo apt update
+ sudo apt-get install clamav-daemon clamav-freshclam clamav-unofficial-sigs --yes
+ sudo freshclam --verbose
42
+ sudo systemctl restart clamav-daemon.service
43
44
- name: Run unit tests
45
run: pytest
0 commit comments