Skip to content

Commit

Permalink
Nit updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaytak committed Nov 14, 2024
1 parent 49fb8bd commit d269e38
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aot-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fetch-depth: 1

- name: Setup .NET 9.0.x
uses: actions/setup-dotnet@v4.0.1
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 9.0.x

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ on:
jobs:
build:
runs-on: windows-latest
continue-on-error: true
continue-on-error: false
name: "Build and run unit tests"
steps:
- name: Checkout repository
uses: actions/[email protected]

- name: Setup .NET 9.0.x
uses: actions/setup-dotnet@v4.0.1
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 9.0.x

Expand All @@ -53,18 +53,18 @@ jobs:

- name: Create code coverage report
run: |
dotnet tool install -g dotnet-reportgenerator-globaltool
dotnet tool install -g dotnet-reportgenerator-globaltool --version 5.4.1
reportgenerator -reports:./**/coverage.cobertura.xml -targetdir:CodeCoverage -reporttypes:'MarkdownSummaryGithub;Cobertura'
- name: Write Coverage to Job Summary
- name: Write coverage to job summary
shell: bash
run: |
cat CodeCoverage/SummaryGithub.md >> $GITHUB_STEP_SUMMARY
echo "COMMENT_CONTENT_ENV_VAR<<EOF" >> $GITHUB_ENV
echo $(cat CodeCoverage/SummaryGithub.md) >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Comment Coverage in PR
- name: Comment coverage in PR
uses: actions/github-script@v7
id: comment
with:
Expand Down

0 comments on commit d269e38

Please sign in to comment.