Skip to content

lylingzhen pushed module-controller code #5

lylingzhen pushed module-controller code

lylingzhen pushed module-controller code #5

name: Module Controller Unit Test
run-name: ${{ github.actor }} pushed module-controller code
on:
push:
branches:
- main
pull_request:
branches:
- main
# enable manually running the workflow
workflow_dispatch:
env:
CGO_ENABLED: 0
GOOS: linux
WORK_DIR: .
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