Skip to content

Homework7: Yura Buzinau #7

Homework7: Yura Buzinau

Homework7: Yura Buzinau #7

Workflow file for this run

name: Pylint
on: [pull_request, workflow_dispatch]
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