Skip to content

Potential fix for code scanning alert no. 4: Workflow does not contai… #6

Potential fix for code scanning alert no. 4: Workflow does not contai…

Potential fix for code scanning alert no. 4: Workflow does not contai… #6

Workflow file for this run

name: Go Lint
on: [push, pull_request]
jobs:
test:
name: Lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2
with:
args: '--timeout=5m --exclude="SA1019" --exclude="SA9003"'