Skip to content

Commit

Permalink
Integrate drone.io CI
Browse files Browse the repository at this point in the history
  • Loading branch information
v-byte-cpu committed Mar 10, 2021
1 parent 026679d commit 49aaa79
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
kind: pipeline
type: docker
name: sx-ci

clone:
depth: 1

steps:
- name: test
image: golang:1.16
commands:
- apt-get update
- apt-get install -y libpcap-dev
- go test ./... -v -cover

- name: build
image: golang:1.16
commands:
- apt-get update
- apt-get install -y libpcap-dev
- go build -ldflags "-w -s"

trigger:
branch:
- master
event:
- push
- pull_request
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# sx

[![Build Status](https://cloud.drone.io/api/badges/v-byte-cpu/sx/status.svg)](https://cloud.drone.io/v-byte-cpu/sx)

The goal of this project is to create the fastest network scanner with clean and simple code.

Right now, only ARP scan is supported.
Expand Down

0 comments on commit 49aaa79

Please sign in to comment.