Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

zemingzhu pushed module-controller code #334

zemingzhu pushed module-controller code

zemingzhu pushed module-controller code #334

name: Module Controller Unit Test
run-name: ${{ github.actor }} pushed module-controller code
on:
push:
branches:
- master
paths:
- 'module-controller/**'
pull_request:
branches:
- master
paths:
- 'module-controller/**'
# enable manually running the workflow
workflow_dispatch:
env:
CGO_ENABLED: 0
GOOS: linux
WORK_DIR: module-controller
defaults:
run:
working-directory: module-controller
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: '1.20.5'
cache-dependency-path: ${{ env.WORK_DIR }}/go.sum
- name: Run go mod
run: go mod download
- name: Test
run: make test
# https://about.codecov.io/blog/getting-started-with-code-coverage-for-golang/
- name: Upload coverage to CodeCov
uses: codecov/codecov-action@v3