fix previous chart issue for installation, Signed-off-by: John Zheng … #1390
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches-ignore: | |
- 'gh-pages' | |
pull_request: | |
branches-ignore: | |
- 'gh-pages' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.19' | |
- run: go version | |
- run: go install github.com/mattn/goveralls@latest | |
- run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest | |
- run: make build.docker | |
- run: make test | |
- run: make check | |
- run: goveralls -coverprofile=profile.cov -service=github | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} |