Skip to content

Commit

Permalink
adjust conditional v2
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasAud committed Oct 7, 2024
1 parent 1be570b commit e2d0bf6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/gem_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ jobs:
fetch-depth: 1
- name: "shellcheck"
uses: reviewdog/action-shellcheck@v1
if: ${{ inputs.run_shellcheck == 'true' }} && ${{ inputs.ruby_version == '3.2' }} && ${{ inputs.runs_on == 'ubuntu-latest' }}
if: |
inputs.run_shellcheck == true &&
inputs.ruby_version == '3.2' &&
inputs.runs_on == 'ubuntu-latest'
with:
check_all_files_with_shebangs: "true"

Expand Down

0 comments on commit e2d0bf6

Please sign in to comment.