File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -45,18 +45,11 @@ jobs:
45
45
name : NppJSONViewer_${{ matrix.build_platform}}_${{ matrix.build_configuration}}_pdb
46
46
path : src\Build\Bin\${{ matrix.build_configuration}}\${{ matrix.build_platform}}\NPPJSONViewer.pdb
47
47
48
- # Step 6: Run unit tests for x86 | Release
49
- - name : Run unit tests x86 | Release
50
- if : matrix.build_platform == 'Win32' && matrix.build_configuration == 'Release '
48
+ # Step 6: Run unit tests for x86 and x64
49
+ - name : Run unit tests
50
+ if : matrix.build_platform == 'Win32' || matrix.build_platform == 'x64 '
51
51
run : |
52
- cd src\Build\Bin\Release\Win32
53
- ./UnitTest.exe
54
-
55
- # Step 7: Run unit tests for x64 | Release
56
- - name : Run unit tests x64 | Release
57
- if : matrix.build_platform == 'x64' && matrix.build_configuration == 'Release'
58
- run : |
59
- cd src\Build\Bin\Release\x64
52
+ cd src\Build\Bin\${{ matrix.build_configuration }}\${{ matrix.build_platform }}
60
53
./UnitTest.exe
61
54
62
55
upload-full-artifacts :
You can’t perform that action at this time.
0 commit comments