enable unit test in workflow (#66)
This commit is contained in:
parent
631b719bbd
commit
ce26d4acfb
|
@ -51,4 +51,16 @@ jobs:
|
|||
run: make all
|
||||
- name: make images
|
||||
run: make images
|
||||
|
||||
test:
|
||||
name: run unit test
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: install Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.14.x
|
||||
- name: make test
|
||||
run: make test
|
||||
|
|
Loading…
Reference in New Issue