feat(pylint): updated workflow file to work with amd64 systems
Some checks failed
Pylint / Pylint (3.11) (push) Successful in 35s
Pylint / Pylint (3.12) (push) Failing after 42s

This commit is contained in:
Seaswimmer 2023-10-07 20:30:50 -04:00
parent 60493fbd77
commit 8e93307c9c
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -4,22 +4,25 @@ on: [push]
jobs:
Pylint:
runs-on: docker
strategy:
matrix:
python-version: ["3.12", "3.11"]
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: actions/checkout@v3.6.0
with:
token: ${{ secrets.COASTALCOMMITSTOKEN}}
- name: Set up Python 3.11
run: |
add-apt-repository ppa:deadsnakes/ppa
apt install -y python3.11 gcc python3.11-dev python3.11-venv
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: curl -sSL https://url.seaswimmer.cc/poetry | python3.11 -
run: curl -sSL https://url.seaswimmer.cc/poetry | python${{ matrix.python-version }} -
- name: Install dependencies
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry env use 3.11
poetry env use ${{ matrix.python-version }}
poetry install --with dev
- name: Analysing the code with Pylint
run: |