Skip to content

Commit

Permalink
FIX: Remove parenthesis for multiple conditions (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue authored Jan 5, 2023
1 parent 0d2e790 commit fbf76d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion check-licenses/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
using: "composite"
steps:
- name: "Install Git and clone project"
if: ${{ (inputs.skip-install == 'false') && (inputs.checkout == 'true') }}
if: ${{ inputs.skip-install == 'false' && inputs.checkout == 'true' }}
uses: actions/checkout@v3

- name: "Set up Python"
Expand Down
2 changes: 1 addition & 1 deletion doc-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:

- name: "Install Git and clone project"
uses: actions/checkout@v3
if: ${{ (inputs.skip-install == 'false') && (inputs.checkout == 'true') }}
if: ${{ inputs.skip-install == 'false' && inputs.checkout == 'true' }}

- name: "Check if X Virtual Frame Buffer is needed"
shell: bash
Expand Down

0 comments on commit fbf76d3

Please sign in to comment.