Skip to content

Commit

Permalink
Update and rename go.yml to build_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TochusC authored Nov 4, 2024
1 parent 56f6d8b commit 3933e8c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/go.yml → .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go
name: build_test

on:
push:
Expand All @@ -12,15 +12,21 @@ on:
jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'

- name: Get dependencies
run: |
sudo apt install -y libpcap-dev
go get -v
- name: Build
run: go build -v ./...

Expand Down

0 comments on commit 3933e8c

Please sign in to comment.