We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eabee20 commit 3c09689Copy full SHA for 3c09689
1 file changed
.github/workflows/ci.yml
@@ -1,8 +1,15 @@
1
name: CI
2
3
on:
4
+ push:
5
+ branches: [ "main" ]
6
pull_request:
7
branches: [ "**" ]
8
+ paths:
9
+ - '**.go'
10
+ - 'go.mod'
11
+ - 'go.sum'
12
+ - '.github/workflows/ci.yml'
13
14
jobs:
15
golangci-lint:
@@ -13,6 +20,8 @@ jobs:
20
- uses: actions/setup-go@v6
21
with:
22
go-version: 1.24.4
23
+ - name: Install libpcap-dev
24
+ run: sudo apt-get update && sudo apt-get install -y libpcap-dev
16
25
- uses: golangci/golangci-lint-action@v8
17
26
18
27
version: v2.5.0
0 commit comments