Skip to content

Homework7: Yura Buzinau #8

Homework7: Yura Buzinau

Homework7: Yura Buzinau #8

Workflow file for this run

name: Pylint
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, edited, synchronize]
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint --disable=C0112,C0114,C0115,C0116 *.py