Skip to content

Bump black from 25.9.0 to 26.1.0 #216

Bump black from 25.9.0 to 26.1.0

Bump black from 25.9.0 to 26.1.0 #216

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.13.2"
- uses: actions/cache@v4
with:
path: ~/.local
key: poetry-2.2.1
- uses: snok/install-poetry@v1
with:
version: 2.2.1
virtualenvs-create: true
virtualenvs-in-project: true
- uses: actions/cache@v4
id: cache-deps
with:
path: .venv
key: pydeps-${{ hashFiles('**/poetry.lock') }}
- run: poetry install --no-interaction --no-root
if: steps.cache-deps.outputs.cache-hit != 'true'
- run: poetry install --no-interaction
- run: poetry run flake8 custom_components/biketrax
- run: poetry run black --check --diff custom_components/biketrax
- run: poetry run isort --check --diff custom_components/biketrax