feat: install python in ci container
This commit is contained in:
parent
afe98b5eae
commit
95fd5940ef
2 changed files with 4 additions and 2 deletions
|
@ -8,6 +8,8 @@ jobs:
|
|||
steps:
|
||||
- uses: https://code.forgejo.org/actions/checkout@v3
|
||||
- run: |
|
||||
pip install -r requirements.txt
|
||||
apt update
|
||||
apt install --yes python3-pip
|
||||
pip3 install -r requirements.txt
|
||||
./build.py
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
- uses: https://code.forgejo.org/actions/checkout@v3
|
||||
- run: |
|
||||
apt-get update
|
||||
apt-get install --yes --no-install-recommends rsync openssh-client
|
||||
apt-get install --yes --no-install-recommends rsync openssh-client python3-pip
|
||||
pip3 install -r requirements.txt
|
||||
./build.py
|
||||
mkdir -p .ssh && chmod 0700 .ssh
|
||||
|
|
Loading…
Reference in a new issue