Skip to content

WIP - Automate readme screenshots #115

WIP - Automate readme screenshots

WIP - Automate readme screenshots #115

Workflow file for this run

name: Lint
on:
push:
branches:
- "*"
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: ">=3.7 <3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Check formatting with black
run: |
black --check .
- name: Lint with ruff
run: |
ruff .