Skip to content
Snippets Groups Projects
Commit bdd35469 authored by cjp's avatar cjp
Browse files

add liner for github action script

parent 425c03f7
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ jobs:
else
go get -v -t -d ./...
fi
- name: Verify
run: |
make verify
......@@ -61,6 +61,12 @@ jobs:
- name: Integrate Test
run: |
chmod +x integrate_test.sh && ./integrate_test.sh
- name: Install go ci lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.27.0
- name: Run Linter
run: golangci-lint run --timeout=10m -v
- name: Post Coverage
run: bash <(curl -s https://codecov.io/bash)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment