Skip to content

Production-readiness refactor: drop MinIO, make Crate IDs more robust, add async validation and offline cache #4

Production-readiness refactor: drop MinIO, make Crate IDs more robust, add async validation and offline cache

Production-readiness refactor: drop MinIO, make Crate IDs more robust, add async validation and offline cache #4

Workflow file for this run

name: Lint
on:
pull_request:
branches: [ develop ]
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: |
python -m pip install --upgrade pip
# Keep in sync with requirements-dev.txt
pip install ruff==0.15.17
- name: Lint
run: ruff check .
- name: Format check
run: ruff format --check .