Skip to content

Commit

Permalink
[skip ci]
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
ZEXSM authored May 16, 2024
2 parents 72f741b + 31e9324 commit ed1cab6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
env:
DOTNET_VERSION: '3.1.x'
CONFIGURATION: 'Release'
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
jobs:
ci:
name: build&test&coverage(${{matrix.os}})
Expand All @@ -19,6 +18,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_PAT }}
- name: Setup .NET SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
Expand All @@ -34,7 +35,7 @@ jobs:
dotnet minicover report
dotnet minicover coverallsreport --service-name "github" \
--service-job-id ${{ github.run_id }} \
--repo-token ${{ env.COVERALLS_REPO_TOKEN }} \
--repo-token ${{ secrets.COVERALLS_REPO_TOKEN }} \
--branch ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} \
--commit ${{ github.sha }}
cd:
Expand Down

0 comments on commit ed1cab6

Please sign in to comment.