add logs #2714
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 | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [ 1.22.x ] | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check go.mod | |
run: | | |
go mod tidy | |
git diff --exit-code | |
- name: Test | |
run: | | |
go test -race -tags=ci ./... -coverprofile=coverage.out -covermode=atomic | |
grep -v -E -f .covignore coverage.out > coverage.filtered.out | |
mv coverage.filtered.out coverage.out | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Build | |
run: | | |
cd cmd/backup | |
go build -tags=ci . |