Skip to content

feat(deps): bump github.com/go-critic/go-critic from 0.11.2 to 0.11.4 #138

feat(deps): bump github.com/go-critic/go-critic from 0.11.2 to 0.11.4

feat(deps): bump github.com/go-critic/go-critic from 0.11.2 to 0.11.4 #138

Workflow file for this run

name: Test and coverage
on:
push:
paths:
- '**.go'
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.19
- name: go get
run: go get ./...
- name: go mod tidy
run: go mod tidy
- name: Run coverage
run: go test -v -race -coverprofile="coverage.out" -covermode=atomic ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)