Fix: make image analysis work with any topic containing image data #228
Workflow file for this run
This file contains hidden or 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: Ruff Lint & Format | |
| on: | |
| pull_request: | |
| push: | |
| branches: [develop, main] | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install Ruff | |
| run: pip install ruff | |
| - name: Run Ruff check (lint) | |
| run: ruff check . | |
| - name: Run Ruff format (verify formatting) | |
| run: ruff format --check . |