Try fixing CI
This commit is contained in:
parent
1a5c413464
commit
0aba73a2a3
2 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue