Skip to content

Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 #24

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

Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 #24

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 8 * * 1' # run "At 8:00 on Monday"
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
go: ['stable', 'oldstable']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
check-latest: true
- run: go mod tidy && git diff --exit-code
- run: go mod download
- run: go mod verify
- run: go build -o /dev/null ./...