Skip to content

Commit 5f49c6a

Browse files
authored
Merge pull request #116 from bootc-dev/ci-perl
ci: Make linting job nonfatal
2 parents 9e95b1e + 16ac840 commit 5f49c6a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,11 @@ jobs:
2525
make integration_tests
2626
- name: lint
2727
run: |
28+
# Used by xref-helpmsgs-manpages
29+
dnf -y install perl-Clone perl-FindBin
2830
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.61.0
2931
export PATH=$PATH:$HOME/go/bin
30-
make lint
32+
make lint || true
3133
- name: gofmt
3234
run: |
3335
if test -z $(gofmt -l .); then exit 0; else gofmt -d -e . && exit 1; fi

0 commit comments

Comments
 (0)