8000 Merge pull request #2138 from dearchap/issue_2137 · urfave/cli@8fcbe6c · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #2138 from dearchap/issue_2137 #582

Merge pull request #2138 from dearchap/issue_2137

Merge pull request #2138 from dearchap/issue_2137 #582

Workflow file for this run

name: Run lints
on:
push:
tags:
- v3.*
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: latest
0