Skip to content

docs: update issue template #19

docs: update issue template

docs: update issue template #19

Workflow file for this run

name: Python Pylint Check
on:
push:
branches:
- master # Замените "main" на вашу основную ветку
pull_request:
types: [opened, reopened]
jobs:
pylint:
name: Run Pylint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
pip3 install poetry
poetry install
- name: Run pylint
run: |
poetry run pylint --recursive=y ./src/ > pylint_output.txt
continue-on-error: true
- name: Check pylint results
run: |
cat pylint_output.txt
if ! grep -q "Your code has been rated at 10.00/10" pylint_output.txt; then
echo "Pylint issues found!"
exit 1
fi