Skip to content

fix(deps): update module github.com/urfave/cli/v2 to v2.27.4 #146

fix(deps): update module github.com/urfave/cli/v2 to v2.27.4

fix(deps): update module github.com/urfave/cli/v2 to v2.27.4 #146

Workflow file for this run

name: Test
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.x
package:
- .
- ./pkg/app
- ./pkg/command
- ./pkg/config
- ./pkg/env
steps:
- uses: actions/checkout@v4
- name: Use Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: go vet
run: go vet ${{ matrix.package }}
- name: go test
run: go test -v ${{ matrix.package }}
- name: gofmt
run: gofmt -e -l -w ${{ matrix.package }}
- name: Check diff
run: git diff --exit-code