Skip to content

Bump golangci/golangci-lint-action from 3 to 6 #6

Bump golangci/golangci-lint-action from 3 to 6

Bump golangci/golangci-lint-action from 3 to 6 #6

Workflow file for this run

name: CI (Lint and Run Tests)
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.55
args: --timeout=5m
- name: go test
run: go test --timeout=10m ./...