Skip to content

Bump github.com/spf13/cobra from 1.7.0 to 1.8.0 #107

Bump github.com/spf13/cobra from 1.7.0 to 1.8.0

Bump github.com/spf13/cobra from 1.7.0 to 1.8.0 #107

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags-ignore:
- "*.*.*"
pull_request:
branches:
- main
jobs:
test:
strategy:
fail-fast: false
matrix:
go: ["1.20"]
os: [ubuntu-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v4
- name: go test
run: "go test -v -race -coverprofile=coverage.txt -covermode=atomic ./..."
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt