Expose performance options #1139
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: goclean | |
on: | |
push: | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
branches: | |
- main | |
- release-* | |
pull_request: | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
branches: | |
- main | |
- release-* | |
schedule: | |
- cron: '41 20 * * 1' | |
jobs: | |
goclean: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # check-out repository | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.20.0' | |
- name: go vet | |
run: | | |
# Use in-place vendored dependencies. | |
go vet -mod=vendor ./... | |
# If this workflow fails, run `go fmt` on your tree and resubmit. | |
# We ignore vendor/ files whose format we don't control. | |
- name: go fmt | |
run: if [ "$(gofmt -l . | grep -v vendor/ | grep -v third_party/ | wc -l)" -gt 0 ]; then exit 1; fi |