Fix so tests still work

This commit is contained in:
Daniel Cronqvist 2024-08-17 21:55:06 +02:00
parent 85038d0dc3
commit da3c4351c3
2 changed files with 7 additions and 7 deletions

View file

@ -14,9 +14,9 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
run: dotnet restore src/DotTiled.sln
- name: Build
run: dotnet build --no-restore
run: dotnet build --no-restore src/DotTiled.sln
- name: Test
run: dotnet test --no-build --verbosity normal
run: dotnet test --no-build --verbosity normal src/DotTiled.sln