Skip to content

Commit

Permalink
Use python3 instead of python when running pip install commands in gh…
Browse files Browse the repository at this point in the history
… actions
  • Loading branch information
sabaimran committed Jan 18, 2025
1 parent b8c8660 commit af9e906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
- name: ⬇️ Install pip
run: |
apt install -y python3-pip
python -m ensurepip --upgrade
python -m pip install --upgrade pip
python3 -m ensurepip --upgrade
python3 -m pip install --upgrade pip
- name: ⬇️ Install Application
env:
Expand Down

0 comments on commit af9e906

Please sign in to comment.