Skip to content

Commit

Permalink
Merge pull request #1213 from ripienaar/update_release
Browse files Browse the repository at this point in the history
Update release pipeline to match test pipeline
  • Loading branch information
ripienaar authored Dec 23, 2024
2 parents 903d601 + c99ad65 commit ad7a962
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
shell: bash --noprofile --norc -x -eo pipefail {0}
run: |
PATH=$PATH:$GOPATH/bin
GO_LIST=$(go list ./...)
GO_LIST=$(go list ./... | grep -F -e asciigraph -v)
$(exit $(go fmt $GO_LIST | wc -l))
go vet -composites=false $GO_LIST
find . -type f -name "*.go" | xargs misspell -error -locale US
find . -type f -name "*.go" | grep -F -e asciigraph -v | xargs misspell -error -locale US
staticcheck -f stylish $GO_LIST
- name: Test
Expand All @@ -44,7 +44,8 @@ jobs:
cd nats
go build
cd ..
go test -v --failfast -p=1 ./...
go list ./... | grep -F -e asciigraph -v | xargs go test -v --failfast -p=1
- name: Create GitHub App Token
id: token
Expand Down

0 comments on commit ad7a962

Please sign in to comment.