Skip to content

build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2 #50

build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2

build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2 #50

Workflow file for this run

name: Go Test
on:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Install dependencies
run: go mod download
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: latest
args: --timeout=5m
- name: Run modernize
run: go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -test ./...
- name: Run tests
run: go test -v ./...