Github actions run commands as sudo

This commit is contained in:
Mgldvd 2023-02-26 19:14:10 -05:00
parent 2678fc2439
commit 0cf0a74757
1 changed files with 4 additions and 4 deletions

View File

@ -16,22 +16,22 @@ jobs:
- name: Update ubuntu - name: Update ubuntu
run: | run: |
apt-get update sudo apt-get update
echo 🏅 echo 🏅
- name: Install git - name: Install git
run: | run: |
apt-get install git -y sudo apt-get install git -y
echo 🏅 echo 🏅
- name: Install python3 - name: Install python3
run: | run: |
apt-get install python3 -y sudo apt-get install python3 -y
echo 🏅 echo 🏅
- name: Install pip3 - name: Install pip3
run: | run: |
apt-get install -y python3-pip sudo apt-get install -y python3-pip
echo 🏅 echo 🏅
- name: Python3 requirements.txt - name: Python3 requirements.txt