feat(pylint): updated pylint workflow to work with amd64 architectures
All checks were successful
Pylint / Pylint (3.11, 3.11.2) (push) Successful in 1m22s
All checks were successful
Pylint / Pylint (3.11, 3.11.2) (push) Successful in 1m22s
This commit is contained in:
parent
7c6fc32c88
commit
52647c6133
1 changed files with 10 additions and 6 deletions
|
@ -4,22 +4,26 @@ on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
Pylint:
|
Pylint:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ["3.11.2"]
|
||||||
|
python-cmd: ["3.11"]
|
||||||
container: catthehacker/ubuntu:act-latest
|
container: catthehacker/ubuntu:act-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3.6.0
|
uses: actions/checkout@v3.6.0
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.COASTALCOMMITSTOKEN}}
|
token: ${{ secrets.COASTALCOMMITSTOKEN}}
|
||||||
- name: Set up Python 3.11
|
- name: Set up ${{ matrix.python-version }}
|
||||||
run: |
|
uses: actions/setup-python@v4
|
||||||
add-apt-repository ppa:deadsnakes/ppa
|
with:
|
||||||
apt install -y python3.11 gcc python3.11-dev python3.11-venv
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install Poetry
|
- name: Install Poetry
|
||||||
run: curl -sSL https://url.seaswimmer.cc/poetry | python3.11 -
|
run: curl -sSL https://url.seaswimmer.cc/poetry | python${{ matrix.python-cmd }} -
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
export PATH="$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
poetry env use 3.11
|
poetry env use ${{ matrix.python-version }}
|
||||||
poetry install --with dev
|
poetry install --with dev
|
||||||
- name: Analysing the code with Pylint
|
- name: Analysing the code with Pylint
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Reference in a new issue