Update workflow

This commit is contained in:
世界 2024-06-09 10:03:26 +08:00
parent cca25493d3
commit c4df3641c7
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

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

@ -0,0 +1,39 @@
name: Lint
on:
push:
branches:
- main
- dev
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/lint.yml'
pull_request:
branches:
- main
- dev
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ^1.22
- 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