Skip to content

Bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 #14

Bump golangci/golangci-lint-action from 9.2.0 to 9.2.1

Bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 #14

Workflow file for this run

name: ci-go-tests
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
branches:
- main
jobs:
ci-go-tests:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Go 1.23.x
uses: actions/setup-go@v6
with:
go-version: "1.23"
cache-dependency-path: go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v9.2.1
- name: Run Unit Tests
run: go test -race -v ./...