Skip to content

Commit

Permalink
Migrate from travis to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusfcr committed Dec 18, 2024
1 parent b2dea3c commit 7913b74
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 11 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on:
push:
pull_request:

jobs:

build:

runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version: '>=1.19'

- name: Install tests deps
run: sudo apt install nmap -y

- name: Go test
run: go test ./... -count=1
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit 7913b74

Please sign in to comment.