Skip to content

Bump github.com/urfave/cli/v2 from 2.25.7 to 2.26.0 #1327

Bump github.com/urfave/cli/v2 from 2.25.7 to 2.26.0

Bump github.com/urfave/cli/v2 from 2.25.7 to 2.26.0 #1327

Workflow file for this run

name: Go unit tests
on:
pull_request:
paths:
- '**.go'
- go.mod
- go.sum
- Makefile
jobs:
gotest:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Test
run: go test -v ./...
- name: Verify all binaries can be built
run: make build-all