Skip to content

build(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1 #345

build(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1

build(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1 #345

Workflow file for this run

name: test
on:
pull_request:
branches: [ main ]
jobs:
test:
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.21
- name: Run go mod tidy
run: go mod tidy
- name: Run Test
run: go test ./... -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)