Skip to content

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #186

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

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #186

Workflow file for this run

name: Go
on:
pull_request:
paths:
- go.sum
- go.mod
- "**.go"
- .github/workflows/go.yml
jobs:
build:
name: Test
runs-on: ubuntu-22.04
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "^1.22"
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -o epoch_bin -v ./cmd/epoch/main.go
- name: Test
run: go test -race ./...
- name: Run golangci-lint
uses: golangci/[email protected]