Skip to content

Install ClamAV in a temporary directory #166

Install ClamAV in a temporary directory

Install ClamAV in a temporary directory #166

Workflow file for this run

name: Test action
on: [push, pull_request]
jobs:
clamd_macos:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Start ClamAV daemon
uses: ./
- name: Ping clamd on TCP port 3310
run: echo PING | nc localhost 3310
- name: Ping clamd using the Unix socket
run: echo PING | nc -U /tmp/clamd.socket
- name: Shut down clamd
run: echo SHUTDOWN | nc localhost 3310
clamd_ubuntu:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Start ClamAV daemon
uses: ./
- name: Ping clamd on TCP port 3310
run: echo PING | nc localhost 3310
- name: Ping clamd using the Unix socket
run: echo PING | nc -U /tmp/clamd.socket
- name: Shut down clamd
run: echo SHUTDOWN | nc localhost 3310
clamd_windows:
runs-on: windows-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Start ClamAV daemon
uses: ./
- name: Test the connection to clamd on TCP port 3310
run: Test-NetConnection -ComputerName localhost -Port 3310
clamd_windows_issue_1:
runs-on: windows-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Start ClamAV daemon
uses: ./
- name: Check out code again
uses: actions/checkout@v4