Skip to content

Commit

Permalink
updated gha
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronSaikovski committed Apr 18, 2024
1 parent 1887dc7 commit d16ef4f
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,19 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.3
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore --force
- name: Build
run: dotnet build
run: dotnet build --no-restore
# We really should have tests, putting these steps here for when we have a build process
# - name: Test
# run: dotnet test --no-build --verbosity normal
# run: dotnet test dev-proxy.sln --no-build --verbosity normal --collect:"XPlat Code Coverage"
# - name: Install report generator
# run: dotnet tool install --global dotnet-reportgenerator-globaltool
# - name: Generate coverage report
# run: reportgenerator -reports:**/coverage.cobertura.xml -targetdir:./reports/coverage
# - uses: actions/upload-artifact@v3
# with:
# name: coverage
# path: reports/coverage

0 comments on commit d16ef4f

Please sign in to comment.