Skip to content

chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.1.0 in the actions-deps group #37

chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.1.0 in the actions-deps group

chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.1.0 in the actions-deps group #37

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: ["1.22.x"]
services:
redis:
image: redis
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.version }}
cache: true
- name: Test
run: go test -race -v ./... -coverprofile=coverage.out
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}