Skip to content

Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 (#40) #52

Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 (#40)

Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 (#40) #52

Workflow file for this run

name: ci
on:
pull_request:
branches: ["master"]
push:
branches: ["master"]
tags: ["*"]
jobs:
go-fmt-and-vet:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
with:
go-version-file: 'go.mod'
cache: true
- run: |
files=$(go fmt ./...)
if [ -n "$files" ]; then
echo "The following file(s) do not conform to go fmt:"
echo "$files"
exit 1
fi
- run: go vet ./...
go-test:
needs: go-fmt-and-vet
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
with:
go-version-file: 'go.mod'
cache: true
- run: go test -race ./...