Skip to content

Commit 06e85e3

Browse files
committed
run all clamav things in multiline script
1 parent f6e82e6 commit 06e85e3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ jobs:
3535
run: python -m pip install -e .
3636

3737
- 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
38+
run: |
39+
sudo apt update
40+
sudo apt-get install clamav-daemon clamav-freshclam clamav-unofficial-sigs --yes
41+
sudo freshclam --verbose
42+
sudo systemctl restart clamav-daemon.service
4243
4344
- name: Run unit tests
4445
run: pytest

0 commit comments

Comments
 (0)