Skip to content

Commit

Permalink
fixup: attempt to set dotnet test
Browse files Browse the repository at this point in the history
Set it to x64 specifically since arm64 wont run on github
  • Loading branch information
Dorus committed Sep 23, 2024
1 parent 6ba48d1 commit c0f44e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildcheck-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test
run: dotnet test --arch x64

- name: Restore dependencies
run: dotnet restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildcheck-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test
run: dotnet test --arch x64

0 comments on commit c0f44e3

Please sign in to comment.