Skip to content

add test and try the ci #3

add test and try the ci

add test and try the ci #3

Workflow file for this run

# This workflow will run linter
# For more information see: https://github.com/golangci/golangci-lint-action
name: golangci-lint
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
only-new-issues: true
args: --timeout=10m --verbose