Skip to content

move pylint to pylint.yml. #1

move pylint to pylint.yml.

move pylint to pylint.yml. #1

Workflow file for this run

name: Tests
on: [ push,pull_request ]
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python "3.10"
uses: actions/setup-python@v3
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 ./supervised --fail-under=6
- name: Black + pylint
run: |
black ./supervised
pylint ./supervised --fail-under=6