fix(repo): added another apt command to install python
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 15s
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 15s
This commit is contained in:
parent
9d0a0cf0e9
commit
9742d258fe
1 changed files with 3 additions and 1 deletions
|
@ -14,7 +14,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.COASTALCOMMITSTOKEN}}
|
token: ${{ secrets.COASTALCOMMITSTOKEN}}
|
||||||
- name: Install Python ${{ matrix.python-version }}
|
- name: Install Python ${{ matrix.python-version }}
|
||||||
run: apt install python${{ matrix.python-version }}
|
run: |
|
||||||
|
add-apt-repository ppa:deadsnakes/ppa
|
||||||
|
apt install python${{ matrix.python-version }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
|
|
Loading…
Reference in a new issue