Skip to content

Commit

Permalink
go generate on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
orishavit committed Aug 22, 2024
1 parent b088007 commit 979e7b4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: sudo apt update && sudo apt install libpcap-dev # required for the linter to be able to lint github.com/google/gopacket
- name: go generate
run: |
go generate ./...
go generate -tags ebpf ./...
working-directory: src
- name: go vet
Expand All @@ -45,6 +45,10 @@ jobs:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt update && sudo apt install libpcap-dev # required for the linter to be able to lint github.com/google/gopacket
- name: go generate
run: |
go generate -tags ebpf ./...
working-directory: src
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand Down

0 comments on commit 979e7b4

Please sign in to comment.