Skip to content

Implements network scanner in pure go (no reliance on nmap) #45

Implements network scanner in pure go (no reliance on nmap)

Implements network scanner in pure go (no reliance on nmap) #45

Workflow file for this run

name: Go test
on:
push:
branches:
- '*'
tags:
- '!v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.19'
- name: Install make
run: sudo apt update && sudo apt install -y make
- name: Build
run: make
- name: Test
run: make test