temporary adding debug for codecov tests #810
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: codecov.io | |
on: | |
push: | |
pull_request: | |
jobs: | |
codecov: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
- name: Runing tests for coverage | |
run: | | |
go test -race -coverprofile=coverage.out -covermode=atomic `go list ./... | grep -v vendor/` -v | |
env: | |
TIBIADATA_PROXY: ${{ secrets.TIBIADATA_PROXY }} | |
- name: Uploading coverage to Codecov | |
uses: codecov/codecov-action@v3 |