Skip to content

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

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 #1

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
pip install ruff
- name: Lint
run: ruff check .
- name: Format check
run: ruff format --check .