|
@@ -72,10 +72,19 @@ jobs:
|
|
|
|
|
|
|
|
- name: Setup dotnet
|
|
- name: Setup dotnet
|
|
|
uses: actions/setup-dotnet@v5
|
|
uses: actions/setup-dotnet@v5
|
|
|
|
|
+ if: matrix.runtime.name != 'win-x86'
|
|
|
with:
|
|
with:
|
|
|
dotnet-version: '10.0.x'
|
|
dotnet-version: '10.0.x'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+ - name: Setup dotnet
|
|
|
|
|
+ uses: actions/setup-dotnet@v5
|
|
|
|
|
+ if: matrix.runtime.name == 'win-x86'
|
|
|
|
|
+ with:
|
|
|
|
|
+ dotnet-version: '10.0.x'
|
|
|
|
|
+ architecture: 'x86'
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
- name: Install veraPDF - PDF conformance testing tool
|
|
- name: Install veraPDF - PDF conformance testing tool
|
|
|
if: matrix.runtime.name == 'linux-x64'
|
|
if: matrix.runtime.name == 'linux-x64'
|
|
|
run: |
|
|
run: |
|