1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-16 08:58:22 -04:00
v2fly/.github/workflows/linter.yml

36 lines
736 B
YAML
Raw Normal View History

2020-09-09 06:19:49 -04:00
name: Linter
on:
push:
branches:
- master
- v*
2020-09-16 10:00:52 -04:00
paths:
- "**/*.go"
- ".github/workflows/linter.yml"
pull_request:
2020-08-24 12:04:31 -04:00
types: [opened, synchronize, reopened]
2020-09-16 10:00:52 -04:00
paths:
- "**/*.go"
- ".github/workflows/linter.yml"
jobs:
2020-08-24 04:09:51 -04:00
lint:
if: github.repository == 'v2fly/v2ray-core'
runs-on: ubuntu-latest
steps:
2020-08-30 13:09:45 -04:00
- name: Set up Go 1.x
uses: actions/setup-go@v4
2020-08-30 13:09:45 -04:00
with:
2022-08-19 07:11:54 -04:00
go-version: ^1.19
2020-08-30 13:09:45 -04:00
- name: Checkout codebase
uses: actions/checkout@v3
2020-09-09 05:50:36 -04:00
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
2020-09-09 05:50:36 -04:00
with:
version: latest
args: --config=.github/linters/.golangci.yml
only-new-issues: true