Skip to content

Commit

Permalink
feat: update GitHub Actions workflow with testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nanotaboada committed Dec 9, 2023
1 parent c98477e commit 2b408a0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,11 @@ jobs:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build project
- name: Build projects
run: dotnet build --no-restore
- name: Run unit tests and collect coverage
run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 2b408a0

Please sign in to comment.