Skip to content

Make a number of refactors to how the state of devices is set. #136

Make a number of refactors to how the state of devices is set.

Make a number of refactors to how the state of devices is set. #136

Workflow file for this run

name: Ruff Linter and Formatter
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo Code
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff Check
run: ruff check --output-format=github .
- name: Run Ruff Formatter
run: ruff format --check .