Bump yip to v1.9.6 for v2.1.x branch #1652
Workflow file for this run
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: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
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: 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 |