GalaxyCogs/.forgejo/workflows/pylint.yaml
SeaswimmerTheFsh 0fa58eba3c
Some checks reported warnings
Pylint / Pylint (3.10, 3.11.2) (push) Has been cancelled
Pylint / Pylint (3.10, 3.9) (push) Has been cancelled
Pylint / Pylint (3.11, 3.10) (push) Has been cancelled
Pylint / Pylint (3.11, 3.11.2) (push) Has been cancelled
Pylint / Pylint (3.11, 3.9) (push) Has been cancelled
Pylint / Pylint (3.9, 3.10) (push) Has been cancelled
Pylint / Pylint (3.9, 3.11.2) (push) Has been cancelled
Pylint / Pylint (3.9, 3.9) (push) Has been cancelled
Pylint / Pylint (3.10, 3.10) (push) Has been cancelled
feat(pylint): lint 3.10 and 3.9 as well
2023-10-07 19:53:26 -04:00

31 lines
969 B
YAML

name: Pylint
on: [push]
jobs:
Pylint:
runs-on: docker
strategy:
matrix:
python-version: ["3.11.2", "3.10", "3.9"]
python-cmd: ["3.11", "3.10", "3.9"]
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: actions/checkout@v3.6.0
with:
token: ${{ secrets.COASTALCOMMITSTOKEN}}
- 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 | python${{ matrix.python-cmd }} -
- name: Install dependencies
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry env use ${{ matrix.python-version }}
poetry install --with dev
- name: Analysing the code with Pylint
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run pylint $(git ls-files '*.py')