2022-07-24 11:44:33 +00:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-10-30 04:36:03 +00:00
|
|
|
- stable-next
|
2022-12-03 09:03:04 +00:00
|
|
|
- main-next
|
|
|
|
- dev-next
|
2022-07-24 11:44:33 +00:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
- '.github/**'
|
2023-02-09 14:07:00 +00:00
|
|
|
- '!.github/workflows/lint.yml'
|
2022-07-24 11:44:33 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2023-10-30 04:36:03 +00:00
|
|
|
- stable-next
|
2022-12-03 09:03:04 +00:00
|
|
|
- main-next
|
|
|
|
- dev-next
|
2022-07-24 11:44:33 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-11-14 11:16:02 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
|
2022-07-24 11:44:33 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Get latest go version
|
|
|
|
id: version
|
|
|
|
run: |
|
2023-02-09 14:07:00 +00:00
|
|
|
echo 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') >> $GITHUB_OUTPUT
|
2022-07-24 11:44:33 +00:00
|
|
|
- name: Setup Go
|
2023-12-12 14:07:50 +00:00
|
|
|
uses: actions/setup-go@v5
|
2022-07-24 11:44:33 +00:00
|
|
|
with:
|
|
|
|
go-version: ${{ steps.version.outputs.go_version }}
|
|
|
|
- name: golangci-lint
|
|
|
|
uses: golangci/golangci-lint-action@v3
|
|
|
|
with:
|
2023-10-30 04:36:03 +00:00
|
|
|
version: latest
|
|
|
|
args: --timeout=30m
|
|
|
|
install-mode: binary
|