Avoid rsync failures due to selinux extended attributes #1987
Workflow file for this run
This file contains hidden or 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 | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/[email protected] | |
| - name: Install Go | |
| uses: actions/[email protected] | |
| with: | |
| go-version-file: go.mod | |
| - name: Analysis | |
| uses: golangci/golangci-lint-action@v3 | |
| with: | |
| args: -v | |
| - name: Build | |
| run: make build-cli | |
| - 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 |