Skip to content

Add kubecm export command #821

Add kubecm export command

Add kubecm export command #821

Workflow file for this run

name: Go
on:
push:
branches:
- "master"
paths:
- '**.go'
- '**.yaml'
- '**.mod'
pull_request:
paths:
- '**.go'
- '**.yaml'
- '**.mod'
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v3
with:
go-version: 1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run test
run: make test
- name: Upload coverage report
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
flags: unittests
name: codecov-umbrella