@@ -369,7 +369,7 @@ runs:
369
369
)
370
370
371
371
print $"\n(ansi purple)Installing workflow dependencies(ansi reset)"
372
- mut uv_args = [sync --project $action_path --group action]
372
+ mut uv_args = [sync --project $action_path --group action --no-dev ]
373
373
if $verbosity {
374
374
$uv_args = $uv_args | append '-v'
375
375
}
@@ -392,27 +392,27 @@ runs:
392
392
$env.UV_CACHE_DIR = $env.RUNNER_TEMP | path join 'cpp-linter-action-cache'
393
393
394
394
let args = [
395
- --style=" ${{ inputs.style }}"
396
- --extensions= ${{ inputs.extensions }}
397
- --tidy-checks=" ${{ inputs.tidy-checks }}"
398
- --repo-root= ${{ inputs.repo-root }}
399
- --version= ${{ inputs.version }}
400
- --verbosity= ${{ inputs.verbosity }}
401
- --lines-changed-only= ${{ inputs.lines-changed-only }}
402
- --files-changed-only= ${{ inputs.files-changed-only }}
403
- --thread-comments= ${{ inputs.thread-comments }}
404
- --no-lgtm= ${{ inputs.no-lgtm }}
405
- --step-summary= ${{ inputs.step-summary }}
406
- --ignore=" ${{ inputs.ignore }}"
407
- --ignore-tidy=" ${{ inputs.ignore-tidy }}"
408
- --ignore-format=" ${{ inputs.ignore-format }}"
409
- --database= ${{ inputs.database }}
410
- --file-annotations= ${{ inputs.file-annotations }}
411
- --extra-arg=" ${{ inputs.extra-args }}"
412
- --tidy-review=" ${{ inputs.tidy-review }}"
413
- --format-review=" ${{ inputs.format-review }}"
414
- --passive-reviews=" ${{ inputs.passive-reviews }}"
415
- --jobs= ${{ inputs.jobs }}
395
+ ' --style=${{ inputs.style }}'
396
+ --extensions ' ${{ inputs.extensions }}'
397
+ ' --tidy-checks=${{ inputs.tidy-checks }}'
398
+ --repo-root ${{ inputs.repo-root }}
399
+ --version ${{ inputs.version }}
400
+ --verbosity ${{ inputs.verbosity }}
401
+ --lines-changed-only ${{ inputs.lines-changed-only }}
402
+ --files-changed-only ${{ inputs.files-changed-only }}
403
+ --thread-comments ${{ inputs.thread-comments }}
404
+ --no-lgtm ${{ inputs.no-lgtm }}
405
+ --step-summary ${{ inputs.step-summary }}
406
+ ' --ignore=${{ inputs.ignore }}'
407
+ ' --ignore-tidy=${{ inputs.ignore-tidy }}'
408
+ ' --ignore-format=${{ inputs.ignore-format }}'
409
+ --database ${{ inputs.database }}
410
+ --file-annotations ${{ inputs.file-annotations }}
411
+ ' --extra-arg=${{ inputs.extra-args }}'
412
+ --tidy-review ${{ inputs.tidy-review }}
413
+ --format-review ${{ inputs.format-review }}
414
+ --passive-reviews ${{ inputs.passive-reviews }}
415
+ --jobs ${{ inputs.jobs }}
416
416
]
417
417
mut uv_args = [run --no-sync --project $action_path --directory (pwd)]
418
418
0 commit comments