Skip to content

Commit

Permalink
fix: Install .NET on code upload step (#494)
Browse files Browse the repository at this point in the history
With #479 a `global.json` was added, but it now fails the build, because
the code coverage upload task acn no longer be executed.
  • Loading branch information
vbreuss authored Mar 16, 2024
1 parent 8b92b5d commit 9347e28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,6 @@ jobs:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup VSTest
Expand Down Expand Up @@ -205,6 +200,8 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
- name: Download code coverage files (MacOS)
uses: actions/download-artifact@v3
with:
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,6 @@ jobs:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup VSTest
Expand Down

0 comments on commit 9347e28

Please sign in to comment.