Skip to content

wip

wip #17

Workflow file for this run

name: pylint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python $${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
uses: snok/install-poetry@v1
- name: Install project
run: poetry install --with=development
- name: Linting ...
run: poetry run -- pylint --persistent n --jobs 0 src/apollon