Skip to content

Commit

Permalink
check_tools install
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed May 23, 2024
1 parent ed69f53 commit c46b9e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actions/python-tools/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ inputs:
check_tools:
description: Install the checking tools
required: false
default: true
default: install
pylint-version:
description: The version of pylint desired
required: false
Expand All @@ -43,7 +43,7 @@ runs:
using: composite
steps:
- name: Install spell checker
if: ${{ inputs.check_tools }}
if: ${{ inputs.check_tools == 'install' }}
shell: bash
run: source $SUPPORT_DIR/setup-spell.bash
env:
Expand All @@ -56,7 +56,7 @@ runs:
shell: bash
run: python -m pip install pip
- name: Install extended Python tooling
if: ${{ inputs.check_tools }}
if: ${{ inputs.check_tools == 'install'}}
shell: bash
run: |
pip install flake8 "pylint $PYLINT_VERSION" pyenchant
Expand Down

0 comments on commit c46b9e8

Please sign in to comment.