Add light state and other changes #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Check inbound changes' | |
# Triggers | |
on: [push, workflow_dispatch] | |
# Jobs | |
jobs: | |
flake8-run: | |
# Runs flake8 as an alternative, faster(?) linter | |
runs-on: [ubuntu-latest] | |
environment: 'CI' | |
name: Run flake8 | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
- name: Set up Python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Run flake8 | |
uses: py-actions/flake8@v2 | |
with: | |
max-line-length: "120" | |
exclude: .git,__pycache__,venv | |
plugins: "flake8-bugbear flake8-black" |