Check goimports in the pipeline (#1381)

* Check goimports in the pipeline

* Check goimports in the pipeline

* Check goimports in the pipeline

* go mod tidy

* wip

* wip

* Fix goimports and go:build tags

* Run golangci-lint before goimports
This commit is contained in:
Deluan Quintão 2021-10-01 15:32:24 -04:00 committed by GitHub
parent 0cbba80284
commit 91e36a2c18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 28 additions and 8 deletions

View file

@ -9,13 +9,19 @@ on:
branches:
- master
jobs:
golangci-lint:
go-lint:
name: Lint Go code
runs-on: ubuntu-latest
steps:
- name: Install taglib
run: sudo apt-get install libtag1-dev
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- uses: actions/checkout@v2
- name: golangci-lint
@ -25,6 +31,18 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
args: --timeout 2m
- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports
- run: goimports -w `find . -name '*.go' | grep -v '_gen.go$'`
- run: go mod tidy
- name: Verify no changes from goimports and go mod tidy
run: |
git status --porcelain
if [ -n "$(git status --porcelain)" ]; then
exit 1
fi
go:
name: Test with Go ${{ matrix.go_version }}
runs-on: ubuntu-latest
@ -61,6 +79,7 @@ jobs:
- name: Test
continue-on-error: ${{contains(matrix.go_version, 'beta') || contains(matrix.go_version, 'rc')}}
run: go test -cover ./... -v
js:
name: Build JS bundle
runs-on: ubuntu-latest
@ -102,7 +121,7 @@ jobs:
binaries:
name: Build binaries
needs: [js, go, golangci-lint]
needs: [js, go, go-lint]
runs-on: ubuntu-latest
steps:
- name: Checkout Code