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 6a602a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildcheck-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2

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

- name: Restore dependencies
run: dotnet restore

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test -p:Platform=x64

- name: Format
run: dotnet format --verify-no-changes --diagnostics IDE0055 --severity info --verbosity diagnostic
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 -p:Platform=x64
2 changes: 1 addition & 1 deletion Yafc.Model.Tests/Yafc.Model.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Platforms>x64;ARM64</Platforms>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 6a602a2

Please sign in to comment.