1. Adding covering report #10
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: test Go using asdf | |
on: | |
push: | |
pull_request: | |
jobs: | |
test-asdf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install asdf & tools | |
uses: asdf-vm/actions/install@v2 | |
- name: Install ginkgo | |
run: go get github.com/onsi/ginkgo/v2/ginkgo@latest && go install github.com/onsi/ginkgo/v2/ginkgo@latest | |
- name: Tests | |
run: ginkgo -r -race --cover --coverprofile=.coverage.out | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./.coverage.out |