Merge pull request #282 from calebtrepowski/issue/92 #426
This file contains hidden or 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.24 | |
| - 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 }} |