Skip to content

Commit

Permalink
fix the CI workflow to be better named and get rid of goimports
Browse files Browse the repository at this point in the history
  • Loading branch information
braydonk committed Sep 8, 2023
1 parent 92e4a8f commit bdcb5f4
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,14 @@ jobs:
go-version: ${{ matrix.go }}
cache: true

- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports@latest

- name: Test
- name: Go Mod Tidy
run: go mod tidy

- name: Test
- name: Go Vet
run: go vet

- name: Test
run: go test -v ./...

- name: Test
- name: Integration Test
run: make integrationtest

- name: goimports
run: test -z "$(set -o pipefail && goimports -l . | tee goimports.out)" || { cat goimports.out && exit 1; }

0 comments on commit bdcb5f4

Please sign in to comment.