File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1919jobs :
2020 build :
2121 strategy :
22+ fail-fast : false
2223 matrix :
24+ os : [ ubuntu-24.04, windows-2022 ]
2325 configuration : [ 'Debug', 'Release' ]
2426
25- runs-on : ubuntu-22.04
27+ runs-on : ${{ matrix.os }}
2628
2729 env :
2830 Configuration : ${{ matrix.configuration }}
@@ -49,12 +51,14 @@ jobs:
4951
5052 - name : test
5153 run : dotnet test --no-build --no-restore
54+ env :
55+ TestNetCoreOnly : ${{ contains(matrix.os, 'ubuntu') }}
5256
5357 - name : pack
5458 run : dotnet pack --no-build --no-restore -c ${{ matrix.configuration }} -o dist
5559
5660 - name : publish artifact
5761 uses : actions/upload-artifact@v4
5862 with :
59- name : VbaCompression_${{ env.VersionSuffix }}_${{ matrix.configuration }}
63+ name : VbaCompression_${{ env.VersionSuffix }}_${{ matrix.configuration }}_${{ matrix.os }}
6064 path : ' ${{ github.workspace }}/dist'
Original file line number Diff line number Diff line change 33 <PropertyGroup >
44 <VersionPrefix >1.0.0</VersionPrefix >
55 <TargetFrameworks >net462;net48;net6.0;net7.0;net8.0</TargetFrameworks >
6+ <TargetFrameworks Condition =" '$(TestNetCoreOnly)' == 'true' " >net6.0;net7.0;net8.0</TargetFrameworks >
67 </PropertyGroup >
78
89 <PropertyGroup >
You can’t perform that action at this time.
0 commit comments