Skip to content

chore(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#180) #475

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

chore(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#180) #475

Workflow file for this run

name: Test
concurrency:
# for PR's cancel the running task, if another commit is pushed
group: ${{ github.workflow }} ${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
push:
branches:
- main
pull_request:
types:
- opened
- ready_for_review
- synchronize
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.20'
- name: Set up ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo
- name: Run Tests
run: make test
- name: Run tests with Coverage
run: make coverage
- name: Upload Code Coverage
uses: codecov/codecov-action@v4
with:
name: codecov-deck
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true