Skip to content

Commit a5851b9

Browse files
Fix multiline command
1 parent cb11315 commit a5851b9

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/test.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,17 @@ jobs:
2323
run: dotnet build --configuration Release --no-restore
2424

2525
- name: Unit Tests
26+
shell: pwsh
2627
run: |
27-
dotnet test "./CloudinaryDotNet.Tests/CloudinaryDotNet.Tests.csproj" \
28-
--configuration Release \
29-
--no-build \
28+
dotnet test "./CloudinaryDotNet.Tests/CloudinaryDotNet.Tests.csproj" `
29+
--configuration Release `
30+
--no-build `
3031
--logger:"trx"
3132
3233
- name: Integration Tests
34+
shell: pwsh
3335
run: |
34-
dotnet test "./CloudinaryDotNet.IntegrationTests/CloudinaryDotNet.IntegrationTests.csproj" \
35-
--configuration Release \
36-
--no-build \
36+
dotnet test "./CloudinaryDotNet.IntegrationTests/CloudinaryDotNet.IntegrationTests.csproj" `
37+
--configuration Release `
38+
--no-build `
3739
--logger:"trx"

0 commit comments

Comments
 (0)