Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shishnk committed Apr 14, 2024
1 parent 46eb922 commit 6b710ec
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,14 @@ jobs:
- name: Test DatabaseApp
run: dotnet test ./WeatherBotApi.DatabaseApp/Tests/DatabaseApp.Tests/DatabaseApp.Tests.csproj --verbosity normal /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov

- name: Publish coverage report
- name: Publish coverage report (weather service)
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: './WeatherBotApi.WeatherApp/Tests/WeatherApp.Tests/TestResults/coverage.info'
path-to-lcov: './WeatherBotApi.WeatherApp/Tests/WeatherApp.Tests/TestResults/coverage.info'

- name: Publish coverage report (database service)
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: './WeatherBotApi.DatabaseApp/Tests/Database.Tests/TestResults/coverage.info'

0 comments on commit 6b710ec

Please sign in to comment.