Skip to content

update config

update config #63

Workflow file for this run

name: Main
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12.3"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install
- name: Analysing the code with pylint
run: |
poetry run pylint $(git ls-files '*.py')
- name: Check files using the black formatter
uses: psf/black@stable
id: action_black
with:
options: "--check"
use_pyproject: true