Skip to content

added a few more options to visualize_detector_output #267

added a few more options to visualize_detector_output

added a few more options to visualize_detector_output #267

name: python style checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch: # Run on manual triggering from GitHub UI
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run ruff linter
run: |
ruff check .
# - name: Run ruff formatter check
# run: |
# ruff format --check .