Skip to content

chore: bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #111

chore: bump github.com/stretchr/testify from 1.8.4 to 1.9.0

chore: bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #111

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Build & Test
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -cover ./...
- name: Benchmarks
run: go test -bench=. -count 5 -benchmem -run=^# ./...