Skip to content

Bump github.com/urfave/cli/v2 from 2.27.3 to 2.27.4 #209

Bump github.com/urfave/cli/v2 from 2.27.3 to 2.27.4

Bump github.com/urfave/cli/v2 from 2.27.3 to 2.27.4 #209

Workflow file for this run

---
name: build
on:
push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Check GoReleaser config
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: check
- name: Test
run: go test ./...
- name: Build
run: go build -v ./...
...