Skip to content

Chore: (deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0 #202

Chore: (deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0

Chore: (deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0 #202

Workflow file for this run

# Reference from:
# https://github.com/c-bata/go-prompt/blob/master/.github/workflows/test.yml
name: CI
on: [push, pull_request]
jobs:
Test:
name: Unit tests with coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go 1.21
uses: actions/setup-go@v2
with:
go-version: 1.21
- run: make lint
- name: Running go tests with coverage
env:
GO111MODULE: on
run: |
make cover
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out