Skip to content

Commit

Permalink
build: lower coverage threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Feb 7, 2024
1 parent 8edb38a commit 9c359b5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ jobs:

- name: Check
run: make check
env:
COVER_THRESHOLD: 70.0
GOLANGCI_LINTERS: gosec

- name: Upload Code Coverage
if: runner.os == 'Linux'
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:

- name: Check
run: make check
env:
COVER_THRESHOLD: 70.0
GOLANGCI_LINTERS: gosec

- name: Buildah Action
id: build-image
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ifeq ($(OS),Windows_NT)
else
@wget -O lint-project.sh https://raw.githubusercontent.com/moov-io/infra/master/go/lint-project.sh
@chmod +x ./lint-project.sh
COVER_THRESHOLD=70.0 ./lint-project.sh
COVER_THRESHOLD=40.0 ./lint-project.sh
endif

.PHONY: client
Expand Down

0 comments on commit 9c359b5

Please sign in to comment.