Skip to content

feat(dcs): import dcs resource and add unit test and docs #338

feat(dcs): import dcs resource and add unit test and docs

feat(dcs): import dcs resource and add unit test and docs #338

Workflow file for this run

# This is a ci workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
# push:
# branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ">=1.16"
- name: Build
run: make build
- name: Vet
run: make vet
- name: test
run: make test