Skip to content

Bump golangci/golangci-lint-action from 5 to 6 #252

Bump golangci/golangci-lint-action from 5 to 6

Bump golangci/golangci-lint-action from 5 to 6 #252

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v5
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Install deps
run: sudo apt-get update && sudo apt-get install -y libpcap0.8 libpcap0.8-dev
- name: Build Linux Only
run: make
- name: Run tests
run: make test test-fmt test-tidy