Skip to content

Update main.md

Update main.md #887

Workflow file for this run

name: Golang Lint
on: [pull_request]
jobs:
golangci:
name: lint
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: '1.19'
- name: golangci-lint go
uses: golangci/golangci-lint-action@v3
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.48.0
working-directory: opensearch-operator
args: --timeout=6m --skip-dirs="(^|/)responses($|/)" -v