Fix unterminated quoted string (#1999) #983
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: Build CLI | |
on: | |
pull_request: | |
paths: | |
- cmd/** | |
- pkg/** | |
- main.go | |
- make/** | |
- .github/** | |
- Makefile | |
- tests/** | |
- go.mod | |
- go.sum | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Build | |
run: make build-cli | |
- name: Analysis | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
args: -v | |
- name: Deps | |
run: make test-deps | |
- name: Run tests | |
run: | | |
make test-cli | |
sudo env PATH="$PATH" make test-root | |
- name: Merge coverage | |
run: | | |
echo "mode: atomic" > coverage.out | |
grep -v "mode: atomic" coverage.txt >> coverage.out | |
grep -v "mode: atomic" coverage_root.txt >> coverage.out | |
- name: Codecov | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.out |