Skip to content

fix: add pylint to CI #5

fix: add pylint to CI

fix: add pylint to CI #5

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
name: Do the code respects Python standards?
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install pre-commit
run: pip install pre-commit pylint
- name: Run pre-commit
run: pre-commit run --all-files