We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66280e4 commit 431c5d2Copy full SHA for 431c5d2
.github/workflows/_ledger_lint.yml
@@ -40,6 +40,7 @@ jobs:
40
- name: Generate compilation database
41
run: bear -- make -j BOLOS_SDK="$NANOSP_SDK"
42
- name: Setup python
43
+ if: ${{ !inputs.use_latest_builder }}
44
uses: actions/setup-python@v5
45
with:
46
python-version: "3.11"
@@ -55,7 +56,7 @@ jobs:
55
56
step-summary: true
57
style: file # uses .clang-format
58
thread-comments: true
- tidy-checks: "" # use only .clang-tidy checks
59
+ tidy-checks: ${{ inputs.use_latest_builder && '-*' || '' }}
60
- name: Fail if errors
61
if: steps.linter.outputs.checks-failed > 0
62
run: |
0 commit comments