Skip to content

chore(deps): bump golangci/golangci-lint-action from 3.5.0 to 3.6.0 #1432

chore(deps): bump golangci/golangci-lint-action from 3.5.0 to 3.6.0

chore(deps): bump golangci/golangci-lint-action from 3.5.0 to 3.6.0 #1432

Workflow file for this run

---
name: Go
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
- name: Lint
uses: golangci/golangci-lint-action@v3.6.0
with:
version: v1.52
args: -D errcheck
- name: Test
run: |
go test -v ./...