Skip to content

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

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 #202

Workflow file for this run

name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:
env:
# don't auto-upgrade the gotoolchain
# https://github.com/docker-library/golang/issues/472
GOTOOLCHAIN: local
jobs:
test:
runs-on: windows-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
-
name: Go mod
run: |
go mod download
shell: bash
-
name: Test
run: |
go test -coverprofile=coverage.txt -covermode=atomic ./...
shell: bash
-
name: Upload coverage
uses: codecov/codecov-action@v3
with:
file: ./coverage.txt