Skip to content

Merge pull request #27 from robgonnella/simplify-scanner-timeouts #47

Merge pull request #27 from robgonnella/simplify-scanner-timeouts

Merge pull request #27 from robgonnella/simplify-scanner-timeouts #47

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
tags:
- '!v*'
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: sudo apt update && sudo apt install -y make libpcap-dev
- name: Build
run: make
- name: Test
run: make test