Skip to content

Add YAML linting and improve setup script #137

Add YAML linting and improve setup script

Add YAML linting and improve setup script #137

Workflow file for this run

---
name: Black
on:
push:
branches: [main, feature/*]
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
jobs:
black:
name: Run black format checker
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Black
run: |
python -m pip install --upgrade pip
pip install black
- name: Run Black
run: black --check --diff --verbose . --exclude 'global_eagle'