Updating the dev container for .NET 9 #337
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: eShopOnWeb Build and Test | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '9.0.x' | |
include-prerelease: true | |
- name: Build with dotnet | |
run: dotnet build ./eShopOnWeb.sln --configuration Release | |
# See https://josh-ops.com/posts/github-code-coverage/ | |
# Add coverlet.collector nuget package to test project - 'dotnet add <TestProject.cspoj> package coverlet | |
- name: Test with dotnet | |
run: dotnet test ./eShopOnWeb.sln --no-restore --verbosity normal --collect:"XPlat Code Coverage" --logger trx --results-directory coverage | |
- name: Copy Coverage To Predictable Location | |
run: find coverage -type f -name coverage.cobertura.xml -exec cp -p {} coverage/coverage.cobertura.xml \; | |
- name: Code Coverage Summary Report | |
uses: irongut/[email protected] | |
with: | |
filename: coverage/coverage.cobertura.xml | |
badge: true | |
format: 'markdown' | |
output: 'both' | |
- name: Upload code coverage results artifact | |
uses: actions/upload-artifact@v4 | |
if: success() || failure() | |
with: | |
name: code-coverage-results | |
path: code-coverage-results.md | |
retention-days: 1 | |
- name: Save the PR number in an artifact | |
if: github.event_name == 'pull_request' && (success() || failure()) | |
shell: bash | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
run: echo $PR_NUMBER > pr-number.txt | |
- name: Upload the PR number | |
uses: actions/upload-artifact@v4 | |
if: github.event_name == 'pull_request' && (success() || failure()) | |
with: | |
name: pr-number | |
path: ./pr-number.txt | |
retention-days: 1 |