Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Use pipx for Python package management #275

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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