Skip to content

Upgrade: bump github.com/urfave/cli/v2 from 2.25.7 to 2.26.0 #315

Upgrade: bump github.com/urfave/cli/v2 from 2.25.7 to 2.26.0

Upgrade: bump github.com/urfave/cli/v2 from 2.25.7 to 2.26.0 #315

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ^1.18
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: build --single-target --snapshot --rm-dist
- name: Run golangci-lint
uses: golangci/[email protected]
- name: Test
run: go test -v ./...