Skip to content

pylint and black experiment #1

pylint and black experiment

pylint and black experiment #1

Workflow file for this run

name: Python Lint and Format
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pipenv shell
- name: Lint check
run: |
pylint **/*.py
- name: Format check
run: |
black --diff --check **/*.py