Skip to content

Bump github.com/spf13/cobra from 1.9.1 to 1.10.1 #23

Bump github.com/spf13/cobra from 1.9.1 to 1.10.1

Bump github.com/spf13/cobra from 1.9.1 to 1.10.1 #23

name: Build and Test on PR
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Run tests
run: go test -v ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Run linters
run: golangci-lint run
- name: Build
run: go build -v