fix(repo): added another apt command to install python
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 15s

This commit is contained in:
Seaswimmer 2023-09-24 07:55:45 -04:00
parent 9d0a0cf0e9
commit 9742d258fe
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -14,7 +14,9 @@ jobs:
with:
token: ${{ secrets.COASTALCOMMITSTOKEN}}
- 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
run: |
python -m pip install --upgrade pip