Commit 19b3bb4 1 parent 5e88c56 commit 19b3bb4 Copy full SHA for 19b3bb4
File tree 1 file changed +20
-5
lines changed
1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
matrix :
10
10
framework-version :
11
- - net481
12
- - net452
11
+ - v4.8.1
12
+ - v4.5.2
13
13
steps :
14
14
# 1. Checkout repository
15
15
- name : Checkout Code
31
31
32
32
# 5. Build the Solution
33
33
- name : Build Solution for ${{ matrix.framework-version }}
34
+ shell : pwsh
34
35
run : |
35
- msbuild CloudinaryDotNet.sln /p:Configuration=Release /p:TargetFrameworkVersion=${{ matrix.framework-version }}
36
+ Write-Host "⚒️ Building for: ${{ matrix.framework-version }}"
37
+
38
+ msbuild CloudinaryDotNet.sln `
39
+ /p:Configuration=Release `
40
+ /p:TargetFrameworkVersion=${{ matrix.framework-version }}
36
41
37
42
# 6. Run before_build.ps1
38
43
- name : Run Before Build
@@ -41,10 +46,20 @@ jobs:
41
46
42
47
# 7. Run Unit Tests
43
48
- name : Run Unit Tests for ${{ matrix.framework-version }}
49
+ shell : pwsh
44
50
run : |
45
- vstest.console.exe "./CloudinaryDotNet.Tests/bin/Release/${{ matrix.framework-version }}/CloudinaryDotNet.Tests.dll" /Framework:${{ matrix.framework-version }}
51
+ Write-Host "🧪 Running Unit Tests for: ${{ matrix.framework-version }}"
52
+
53
+ vstest.console.exe `
54
+ "./CloudinaryDotNet.Tests/bin/Release/${{ matrix.framework-version }}/CloudinaryDotNet.Tests.dll" `
55
+ /Framework:${{ matrix.framework-version }}
46
56
47
57
# 8. Run Integration Tests
48
58
- name : Run Integration Tests for ${{ matrix.framework-version }}
59
+ shell : pwsh
49
60
run : |
50
- vstest.console.exe "./CloudinaryDotNet.IntegrationTests/bin/Release/${{ matrix.framework-version }}/CloudinaryDotNet.IntegrationTests.dll" /Framework:${{ matrix.framework-version }}
61
+ Write-Host "🧪 Running Integration Tests for: ${{ matrix.framework-version }}"
62
+
63
+ vstest.console.exe `
64
+ "./CloudinaryDotNet.IntegrationTests/bin/Release/${{ matrix.framework-version }}/CloudinaryDotNet.IntegrationTests.dll" `
65
+ /Framework:${{ matrix.framework-version }}
You can’t perform that action at this time.
0 commit comments