Skip to content

latest deps fix

latest deps fix #3062

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/[email protected]
with:
go-version: 1.20.x
id: go
- name: Check out code into the Go module directory
uses: actions/[email protected]
#- name: Lint code
# run: |
# gofiles=$(find ./ -name '*.go') && [ -z "$gofiles" ] || unformatted=$(goimports -l $gofiles) && [ -z "$unformatted" ] || (echo >&2 "Go files must be formatted with gofmt. Following files has problem: $unformatted" && true);
# diff <(echo -n) <(gofmt -s -d .)
# export PATH=$PATH:$(go env GOPATH)/bin # temporary fix. See https://github.com/actions/setup-go/issues/14
# go get -u golang.org/x/lint/golint
# golint ./...
- name: submodule
run: git submodule update --init --recursive
# Check the format of code
- name: Check code formatting using gofmt
uses: Jerome1337/[email protected]
- name: Static code check
run: |
export PATH=$PATH:$(go env GOPATH)/bin
make -C solution cpu
go vet $(go list ./... | grep -v /cvm-runtime/)
- name: Build
run: make clean && make all -j$(nproc)
- name: CodeCov
run: |
export LD_LIBRARY_PATH=$PWD:$PWD/plugins:$LD_LIBRARY_PATH
GO111MODULE=on && go mod vendor && go test $(go list ./... | grep -v /cvm-runtime/) -mod=vendor -coverprofile=coverage.txt -covermode=atomic
if [ -f coverage.txt ]; then
bash <(curl -s https://codecov.io/bash)
fi