Skip to content

Commit

Permalink
ci: add formatting check to qa job
Browse files Browse the repository at this point in the history
  • Loading branch information
tsenart committed Jul 17, 2023
1 parent a1eaf0f commit 54fb04f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
with:
go-version: '1.20'

- name: Format Check
run: |
set -euo pipefail
go get golang.org/x/tools/cmd/goimports
goimports -w .
git diff --exit-code
- name: Vet
run: go vet ./...

Expand Down

0 comments on commit 54fb04f

Please sign in to comment.