Skip to content

Add YAML linting and improve setup script (#80) #139

Add YAML linting and improve setup script (#80)

Add YAML linting and improve setup script (#80) #139

Workflow file for this run

---
name: Ruff
on:
push:
branches: [main, feature/*]
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
jobs:
ruff:
name: Run ruff linter
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 dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: |
ruff check . --exclude 'global_eagle' --verbose