Update workflow

This commit is contained in:
世界 2023-02-09 21:55:17 +08:00
parent 76391bb71c
commit 989b59665f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 41 additions and 3 deletions

View file

@ -3,7 +3,6 @@ name: Debug build
on:
push:
branches:
- main
- dev
paths-ignore:
- '**.md'
@ -42,5 +41,3 @@ jobs:
- name: Build
run: |
make test
make lint_install
make lint

41
.github/workflows/lint.yml vendored Normal file
View file

@ -0,0 +1,41 @@
name: Lint
on:
push:
branches:
- dev
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/lint.yml'
pull_request:
branches:
- dev
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get latest go version
id: version
run: |
echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g')
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ steps.version.outputs.go_version }}
- name: Cache go module
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
key: go-${{ hashFiles('**/go.sum') }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest