Skip to content

Commit

Permalink
ci: Fix unit test folder paths
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmg committed Aug 29, 2024
1 parent 46ed3f9 commit 8c3420c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
run: dotnet build --configuration Release

- name: Run unit tests
run: dotnet test test\Moniker.Tests --configuration Release --no-build --no-restore
run: dotnet test ./test/Moniker.Tests --configuration Release --no-build --no-restore

- name: Run approval tests
run: dotnet test test\Moniker.ApprovalTests --configuration Release --no-build --no-restore
run: dotnet test ./test/Moniker.ApprovalTests --configuration Release --no-build --no-restore

- name: Create NuGet packages
run: dotnet pack --configuration Release
Expand Down

0 comments on commit 8c3420c

Please sign in to comment.