1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-05 19:43:49 +08:00

add glangci-lint to ci

This commit is contained in:
Ink-33 2021-02-09 02:05:41 +08:00
parent 203b68b740
commit 1b3842fc98
No known key found for this signature in database
GPG Key ID: 5D8B1D036EFB0D2E

View File

@ -27,15 +27,12 @@ jobs:
- goos: windows
goarch: arm64
fail-fast: true
steps:
- uses: actions/checkout@v2
- name: Setup Go environment
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Build binary file
env:
GOOS: ${{ matrix.goos }}
@ -47,7 +44,6 @@ jobs:
export BINARY_NAME="$BINARY_PREFIX$GOOS_$GOARCH$BINARY_SUFFIX"
export CGO_ENABLED=0
go build -o "output/$BINARY_NAME" -ldflags "$LD_FLAGS" .
- name: Upload artifact
uses: actions/upload-artifact@v2
if: ${{ !github.head_ref }}
@ -55,4 +51,12 @@ jobs:
name: ${{ matrix.goos }}_${{ matrix.goarch }}
path: output/
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.29