Skip to content

Commit

Permalink
Merge pull request #275 from ministryofjustice/fix-code-formatter-pip…
Browse files Browse the repository at this point in the history
…-install

fix: Use pipx for Python package management
  • Loading branch information
andrewmooreio authored Oct 14, 2024
2 parents 5d0f32b + 90d7541 commit 8712624
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code-formatter/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ runs:
if [[ ${{ steps.branch-exists.outputs.result }} == 0 ]];
then
npm install --location=global prettier
pip3 install autopep8
pipx install autopep8
FILE2=Gemfile
if [ -f "$FILE2" ]; then
echo "$FILE2 already exists."
Expand Down Expand Up @@ -162,7 +162,7 @@ runs:
if [[ $file == *".github"* ]]; then
echo "Cannot format .github/workflow files."
elif [[ $file == *".py"* ]]; then
python3 -m autopep8 --in-place $file
~/.local/bin/autopep8 --in-place $file
elif [[ $file == *".rb"* ]]; then
bundle exec standardrb --fix $file
elif [[ $file == *".tf" ]] || [[ $file == *".tfvars" ]]; then
Expand Down

0 comments on commit 8712624

Please sign in to comment.