Skip to content

fix names and bump versions #69

fix names and bump versions

fix names and bump versions #69

Workflow file for this run

name: Lint
on:
push:
paths:
- '**.py'
pull_request:
paths:
- '**.py'
jobs:
lint:
name: "Lint"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/[email protected]"
- name: "Set up Python"
uses: actions/[email protected]
with:
python-version: "3.12"
cache: "pip"
- name: "Install requirements"
run: python3 -m pip install -r requirements.txt
- name: "Lint"
run: python3 -m ruff check ./custom_components/audiobookshelf
- name: Run MyPy
run: python3 -m mypy custom_components/audiobookshelf
- name: "Format"
run: python3 -m ruff format ./custom_components/audiobookshelf --check