Add Raw Import and Raw Batch for Writing to SS in any order of version #446
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: Unit Test | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.19' | |
- uses: actions/checkout@v3 | |
- name: Run Go Tests | |
run: | | |
make test-all | |
upload-coverage-report: | |
needs: tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.19' | |
# Download all coverage reports from the 'tests' job | |
- name: Download coverage reports | |
uses: actions/download-artifact@v3 | |
- name: Set GOPATH | |
run: echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV | |
- name: Add GOPATH/bin to PATH | |
run: echo "GOBIN=$(go env GOPATH)/bin" >> $GITHUB_ENV | |
- name: Install gocovmerge | |
run: go get github.com/wadey/gocovmerge && go install github.com/wadey/gocovmerge | |
- name: Merge coverage reports | |
run: gocovmerge $(find . -type f -name '*profile.out') > coverage.txt | |
- name: Check coverage report lines | |
run: wc -l coverage.txt | |
continue-on-error: true | |
- name: Check coverage report files | |
run: ls **/*profile.out | |
continue-on-error: true | |
# Now we upload the merged report to Codecov | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.txt | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |