From 0d0f32d96b3793821c3688de33e1c3db4f5f8197 Mon Sep 17 00:00:00 2001 From: Tommaso Fontana Date: Fri, 14 Jun 2024 13:13:00 +0200 Subject: [PATCH] fixing CI --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 28f939f47c79..2c98ea44e952 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -31,6 +31,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.10' + cache: 'pip' # caching pip dependencies - uses: korandoru/setup-zig@v1 with: zig-version: 0.13.0 @@ -40,7 +41,7 @@ jobs: components: rustfmt cache-workspaces: bindings/python/ - name: Install Maturin - run: python3 -m pip install 'maturin[zig]' + run: pip install 'maturin[zig]' # Check - name: Check that the package compiles run: cargo check --manifest-path=bindings/python/Cargo.toml