We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
uno-check
1 parent 130f676 commit 47ba852Copy full SHA for 47ba852
2 files changed
.github/install_dependencies/action.yml
@@ -16,6 +16,10 @@ inputs:
16
sdk-version:
17
description: 'The version of the Windows Sdk'
18
required: false
19
+ run-uno-check:
20
+ description: 'Whether to run the Uno.Check tool'
21
+ default: 'true'
22
+ required: false
23
24
runs:
25
using: "composite"
@@ -43,6 +47,7 @@ runs:
43
47
44
48
# Run Uno.Check
45
49
- name: Install ${{ inputs.target-platform }} Workloads
50
+ if: ${{ inputs.run-uno-check == 'true' }}
46
51
shell: pwsh
52
run: |
53
dotnet tool install -g uno.check
.github/workflows/ci.yml
@@ -74,6 +74,7 @@ jobs:
74
uses: "./.github/install_dependencies"
75
with:
76
dotnet-version: ${{ env.DOTNET_SDK }}
77
+ run-uno-check: 'false'
78
79
- name: Restore
80
0 commit comments