diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index a45750b..432274b 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -70,6 +70,8 @@ jobs: - uses: actions/checkout@v4 - uses: https://github.com/dtolnay/rust-toolchain@stable + with: + components: clippy, rustfmt - name: Clippy run: cargo clippy -- -D warnings diff --git a/pipeline/utils/download.py b/pipeline/utils/download.py index d889c89..558184f 100644 --- a/pipeline/utils/download.py +++ b/pipeline/utils/download.py @@ -37,4 +37,4 @@ def extract_zip(zip_path: Path, extract_dir: Path) -> None: """Extract a ZIP archive into the given directory.""" extract_dir.mkdir(parents=True, exist_ok=True) with zipfile.ZipFile(zip_path, "r") as zf: - zf.extractall(extract_dir, filter="data") + zf.extractall(extract_dir)