Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ jobs:
make integration_tests
- name: lint
run: |
# Used by xref-helpmsgs-manpages
dnf -y install perl-Clone perl-FindBin
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.61.0
export PATH=$PATH:$HOME/go/bin
make lint
make lint || true
- name: gofmt
run: |
if test -z $(gofmt -l .); then exit 0; else gofmt -d -e . && exit 1; fi