mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
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:
parent
0cbba80284
commit
91e36a2c18
6 changed files with 28 additions and 8 deletions
23
.github/workflows/pipeline.yml
vendored
23
.github/workflows/pipeline.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue