Skip to content

Commit

Permalink
chore: Fix GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
ermshiperete committed Mar 27, 2024
1 parent 4c2eafa commit 2e0af0f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,19 @@ jobs:
with:
dotnet-version: 8.0.x

- name: Build
- name: Build (Linux)
if: matrix.os == 'ubuntu-latest'
run: msbuild /t:Build
working-directory: build/

- name: Install nuget (Windows)
if: matrix.os != 'ubuntu-latest'
run: choco install nuget.commandline

- name: Build (Windows)
if: matrix.os != 'ubuntu-latest'
run: dotnet build

- name: Test
run: dotnet test --logger "html;logfilename=TestResults.html"

Expand Down

0 comments on commit 2e0af0f

Please sign in to comment.