|
|
@ -18,10 +18,13 @@ jobs:
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Test
|
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
|
|
|
|
ls -alt ${GITHUB_WORKSPACE}
|
|
|
|
|
|
|
|
|
|
|
|
go mod vendor
|
|
|
|
go mod vendor
|
|
|
|
go test -race -coverprofile=coverage.txt -covermode=atomic -v -tags "static" $(go list ./... | grep -v /vendor/)
|
|
|
|
go test -race -coverprofile=coverage.txt -covermode=atomic -v -tags "static" $(go list ./... | grep -v /vendor/)
|
|
|
|
- name: Build Binaries
|
|
|
|
- name: Build Binaries
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
|
|
|
|
ls -alt ${GITHUB_WORKSPACE}
|
|
|
|
make all
|
|
|
|
make all
|
|
|
|
|
|
|
|
|
|
|
|
- name: Archive
|
|
|
|
- name: Archive
|
|
|
|