Skip to content

Commit

Permalink
updated code coverage in the workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
compscidr committed Oct 26, 2024
1 parent 28e8e19 commit 0dc79b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release-tagged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ jobs:
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic goblog/...

- name: Code Coveralls
run: bash <(curl -s https://codecov.io/bash)
- name: Code Coverage
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release-untagged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ jobs:
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic goblog/...

- name: Code Coveralls
run: bash <(curl -s https://codecov.io/bash)
- name: Code Coverage
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit 0dc79b8

Please sign in to comment.