diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6e918ce..695b36a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,4 +21,8 @@ jobs: run: go mod tidy - name: Run tests - run: go test ./... -v \ No newline at end of file + run: go test -coverprofile=coverage.txt + - name: Upload results to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file