release: v0.50.0 #311
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: Unit Tests | |
on: [push] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.19 | |
- name: Get dependencies | |
run: | | |
go mod download | |
go install gotest.tools/gotestsum@latest | |
- name: Generate coverage report | |
run: | | |
gotestsum --format dots -- \ | |
-coverprofile=coverage.txt \ | |
-covermode=atomic \ | |
./... | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.txt | |
flags: unittests | |
- name: Report test coverage to DeepSource | |
uses: deepsourcelabs/test-coverage-action@master | |
with: | |
key: go | |
coverage-file: ./coverage.txt | |
dsn: ${{ secrets.DEEPSOURCE_DSN }} |