Skip to content

feat(cli): add 'add-plugins' command #174

feat(cli): add 'add-plugins' command

feat(cli): add 'add-plugins' command #174

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@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- 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@v3
with:
name: codecov-deck
fail_ci_if_error: true