Skip to content

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #166

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #166

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git clone the repository
uses: actions/checkout@v4
- uses: actions/setup-go@v5
- run: go build ./...
test:
runs-on: ubuntu-latest
steps:
- name: Git clone the repository
uses: actions/checkout@v4
- uses: actions/setup-go@v5
- run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
lint:
runs-on: ubuntu-latest
steps:
- name: Git clone the repository
uses: actions/checkout@v4
- uses: actions/setup-go@v5
- run: go vet ./...