Try fixing CI
Some checks failed
CI / Frontend (lint + typecheck) (push) Successful in 2m14s
CI / Python (lint + test) (push) Successful in 3m28s
CI / Rust (lint + test) (push) Successful in 6m36s
Build and publish Docker image / build-and-push (push) Failing after 10m5s

This commit is contained in:
Andras Schmelczer 2026-03-24 20:47:51 +00:00
parent 1a5c413464
commit 0aba73a2a3
2 changed files with 3 additions and 1 deletions

View file

@ -70,6 +70,8 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: https://github.com/dtolnay/rust-toolchain@stable - uses: https://github.com/dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Clippy - name: Clippy
run: cargo clippy -- -D warnings run: cargo clippy -- -D warnings

View file

@ -37,4 +37,4 @@ def extract_zip(zip_path: Path, extract_dir: Path) -> None:
"""Extract a ZIP archive into the given directory.""" """Extract a ZIP archive into the given directory."""
extract_dir.mkdir(parents=True, exist_ok=True) extract_dir.mkdir(parents=True, exist_ok=True)
with zipfile.ZipFile(zip_path, "r") as zf: with zipfile.ZipFile(zip_path, "r") as zf:
zf.extractall(extract_dir, filter="data") zf.extractall(extract_dir)