Added support for Google´s Bumble Bluetooth Controller stack #1634
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: Format and Lint | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
format_and_lint: | |
name: "Format and lint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
- name: Install development dependencies | |
run: pipx run poetry install --only docs,lint | |
- name: Check import sort with isort | |
run: pipx run poetry run isort . --check --diff | |
- name: Check code formatting with black | |
run: pipx run poetry run black . --check --diff | |
- name: Lint with flake8 | |
run: pipx run poetry run flake8 . --count --show-source --statistics | |
- name: Build docs | |
run: pipx run poetry run make -C docs html |