diff options
author | Michael Muré <batolettre@gmail.com> | 2022-12-29 12:50:53 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-12-29 12:50:53 +0100 |
commit | 57f328fbbcce089c950c8b0f8c5d75ee8c1b72fa (patch) | |
tree | 9694e3b527348a4e93a4c4959fa8c9e0762419b2 /.github/workflows/go.yml | |
parent | 2a62c131a25e03fc791ff066563a564c7cb8b879 (diff) | |
download | git-bug-57f328fbbcce089c950c8b0f8c5d75ee8c1b72fa.tar.gz |
CI: remove lint security step as it's crashing
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r-- | .github/workflows/go.yml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 776165d5..90400553 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -54,5 +54,3 @@ jobs: - name: Check Code Formatting run: find . -name "*.go" | while read line; do [ -z "$(gofmt -d "$line" | head)" ] || exit 1; done - - name: Check Security (insecure practices) - run: make secure-practices |