Skip to content

Loader speedup

Loader speedup #70

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
ruff:
name: ruff
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.12"
- name: Install ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run ruff
run: |
ruff check src tests