IndiumRevolt/.forgejo/workflows/pylint.yml

31 lines
909 B
YAML
Raw Normal View History

2023-06-19 16:59:59 -04:00
name: Pylint
on: [push]
jobs:
2023-09-24 08:05:42 -04:00
Pylint:
runs-on: docker
strategy:
matrix:
python-version: ["3.11"]
2023-09-24 08:05:42 -04:00
container: catthehacker/ubuntu:act-latest
2023-06-19 16:59:59 -04:00
steps:
2023-09-24 08:05:42 -04:00
- 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-version }} -
2023-09-24 08:05:42 -04:00
- name: Install dependencies
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry env use ${{ matrix.python-version }}
poetry install --with dev
2023-09-24 08:05:42 -04:00
- name: Analysing the code with Pylint
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run pylint $(git ls-files '*.py')