Skip to content

feat(ssd1327): Add blink animation example with framebuf scaling. #793

feat(ssd1327): Add blink animation example with framebuf scaling.

feat(ssd1327): Add blink animation example with framebuf scaling. #793

Workflow file for this run

name: "🔎 Python Linter"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: "⏳ Checkout repository"
uses: actions/checkout@v4
- name: "🐍 Set up Python"
uses: actions/setup-python@v5
with:
cache: "pip"
cache-dependency-path: pyproject.toml
python-version: "3.10"
- name: "🛠 Install dependencies"
run: python3 -m pip install -e ".[dev]"
- name: "😾 Lint with ruff"
run: make lint