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 54b62d2 commit 211b5aaCopy full SHA for 211b5aa
.github/workflows/tests.yml
@@ -42,5 +42,15 @@ jobs:
42
sudo freshclam --verbose
43
sudo systemctl restart clamav-daemon.service
44
45
+ # wait to make sure clamav socket exists
46
+ for sleep_time in 1 2 3;
47
+ do
48
+ sleep $sleep_time
49
+ if [ -f "/var/run/clamav/clamd.ctl" ];
50
+ then
51
+ break
52
+ fi
53
+ done
54
+
55
- name: Run unit tests
56
run: pytest
new.sh
@@ -0,0 +1,4 @@
1
+for i in 1 2 3;
2
+do
3
+ echo $i
4
+done
0 commit comments