Skip to content

chore: Upgrade go-utils module version from v4 to v5 across the codebase #447

chore: Upgrade go-utils module version from v4 to v5 across the codebase

chore: Upgrade go-utils module version from v4 to v5 across the codebase #447

Workflow file for this run

name: Test
on:
push:
branches: [ v5, v5-dev ]
paths-ignore:
- "**/*.md"
- ".scripts/*.sh"
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.23' ]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
vendor
$HOME/.cache/go-build
$GOPATH/pkg/mod
key: ${{ runner.os }}-go-utils-deps
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go version
- run: pwd
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: go mod vendor
- run: go vet
- run: go test -race -mod=vendor -coverprofile=coverage.txt -covermode=atomic ./...
- run: bash <(curl -s https://codecov.io/bash)