Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Run tests sequentially to make debugging easier
Browse files Browse the repository at this point in the history
  • Loading branch information
caesay committed Dec 26, 2023
1 parent 5c1863f commit 8f6a4ae
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,20 @@ jobs:
run: mv update updatemac
if: ${{ matrix.os == 'macos-latest' }}

- name: Test .NET
run: dotnet test -c Release -l "console;verbosity=detailed"
- name: Build .NET
run: dotnet build -c Release

- name: Test .NET Squirrel.Tests
working-directory: src/test
run: dotnet test --no-build -c Release -l "console;verbosity=detailed" test/Squirrel.Tests/Squirrel.Tests.csproj

- name: Test .NET Squirrel.Packaging.Tests
working-directory: src/test
run: dotnet test --no-build -c Release -l "console;verbosity=detailed" test/Squirrel.Packaging.Tests/Squirrel.Packaging.Tests.csproj

- name: Test .NET Squirrel.CommandLine.Tests
working-directory: src/test
run: dotnet test --no-build -c Release -l "console;verbosity=detailed" test/Squirrel.CommandLine.Tests/Squirrel.CommandLine.Tests.csproj

- name: Upload Rust Artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 8f6a4ae

Please sign in to comment.