Skip to content

chore(deps): bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 #121

chore(deps): bump golangci/golangci-lint-action from 6.1.0 to 6.1.1

chore(deps): bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 #121

Workflow file for this run

name: CI
on: pull_request
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- name: Build
run: go build -v ./...
- name: Run linters
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8
with:
version: latest
skip-pkg-cache: true
skip-build-cache: true
- name: Run tests
run: go test -v ./...