Skip to content

Commit

Permalink
Merge pull request #9 from robgonnella/update-readme
Browse files Browse the repository at this point in the history
Add info about pre-built binaries in README
  • Loading branch information
robgonnella authored Nov 17, 2023
2 parents 9403156 + bcde52b commit 7e74739
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Generate code coverage badge
name: Test

on:
pull_request:
Expand All @@ -8,7 +8,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
name: Update coverage badge
name: Test and update coverage badge
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Go Coverage Badge
uses: tj-actions/coverage-badge-go@v2
with:
filename: coverage.txt
filename: coverage/coverage.txt

- name: Verify Changed files
uses: tj-actions/verify-changed-files@v16
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Go test
name: Build and Test

on:
push:
branches:
- '*'
- main
tags:
- '!v*'

Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# go-lanscan
![Coverage](https://img.shields.io/badge/Coverage-1-red)

A network cli and golang package that allows you to perform arp and syn
scanning on a local area network.
Expand All @@ -22,6 +23,12 @@ Once dependencies are installed, run the following command to install go-lanscan
go install github.com/robgonnella/go-lanscan@latest
```

### Pre-built Binaries

Some pre-built binaries are provided in the releases section of github:
https://github.com/robgonnella/go-lanscan/releases. These binaries still have
a prerequisite on libpcap being installed first.

### Usage

```bash
Expand Down

0 comments on commit 7e74739

Please sign in to comment.