Skip to content

Commit

Permalink
Try fix PR GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
Deterous authored Apr 3, 2024
1 parent 47561ba commit 7514c8b
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,23 @@ jobs:
- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --no-restore
- name: Build UI x86
run: dotnet build MPF/MPF.csproj -f net8.0-windows -r win-x86 -c Debug

- name: Build UI x64
run: dotnet build MPF/MPF.csproj -f net8.0-windows -r win-x64 -c Debug

- name: Build Check x86
run: dotnet build MPF.Check/MPF.Check.csproj -f net8.0 -r win-x86 -c Debug

- name: Build Check x64
run: dotnet build MPF.Check/MPF.Check.csproj -f net8.0 -r win-x64 -c Debug

- name: Build Check osx
run: dotnet build MPF.Check/MPF.Check.csproj -f net8.0 -r osx-x64 -c Debug

- name: Build Check linux
run: dotnet build MPF.Check/MPF.Check.csproj -f net8.0 -r linux-x64 -c Debug

- name: Test
run: dotnet test --no-restore --verbosity normal
run: dotnet test --no-restore --verbosity normal

0 comments on commit 7514c8b

Please sign in to comment.