Bump github.com/urfave/cli/v2 from 2.25.7 to 2.26.0 #57
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- name: Unit Tests | |
run: make test-unit | |
- name: Lint | |
run: | | |
go install honnef.co/go/tools/cmd/staticcheck@latest | |
make lint | |
- name: Tidy | |
run: make go-mod-tidy | |
- name: Test Build | |
run: make build | |
- name: Run GoReleaser Test | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
args: release --snapshot --skip=publish --clean |