Expand downgrade test by upgrading back to origin after downgrading (… #1638
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@v6 | |
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 |