mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
# Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
#
|
|
# This Source Code Form is subject to the terms of the MIT License.
|
|
# If a copy of the MIT was not distributed with this file,
|
|
# You can obtain one at https://github.com/gogf/gf.
|
|
|
|
name: GolangCI-Lint
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
- personal/**
|
|
- feature/**
|
|
- enhance/**
|
|
- fix/**
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- develop
|
|
- personal/**
|
|
- feature/**
|
|
- enhance/**
|
|
- fix/**
|
|
|
|
jobs:
|
|
golangci:
|
|
strategy:
|
|
matrix:
|
|
go-version: [ '1.20','1.21.4','1.22','1.23' ]
|
|
name: golangci-lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup Golang ${{ matrix.go-version }}
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v6
|
|
with:
|
|
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
|
|
version: v1.62.2
|
|
args: --timeout 3m0s |