GalaxyCogs/.forgejo/workflows/pylint.yaml

31 lines
960 B
YAML
Raw Normal View History

2023-09-22 18:52:28 -04:00
name: Pylint
on: [push]
jobs:
Pylint:
runs-on: docker
strategy:
matrix:
python-version: ["3.10"]
2023-09-22 18:52:28 -04:00
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
2023-09-23 08:25:00 -04:00
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 }}
2023-09-24 12:29:58 -04:00
- name: Install Poetry
run: curl -sSL https://cdn.seaswimmer.cc/go/poetry | python${{ matrix.python-version }} -
2023-09-22 18:52:28 -04:00
- 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"
2023-12-13 03:05:37 -05:00
poetry run pylint --rcfile .forgejo/workflows/config/.pylintrc $(git ls-files '*.py')