From 9d4fa3cac62ee9c17e38fceb5985c23778ad5d63 Mon Sep 17 00:00:00 2001 From: "w.pomp" Date: Thu, 16 Apr 2026 17:39:35 +0200 Subject: [PATCH] CI workflow --- .github/workflows/CI.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2f7a2a9..40cbba5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -32,10 +32,15 @@ jobs: - uses: actions/setup-python@v5 with: python-version: 3.x + - name: Install Rust (rustup) + run: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + source $HOME/.cargo/env + rustup default nightly - name: Build wheels run: | python -m pip install maturin - maturin build --release --out dist --find-interpreter --target ${{ matrix.platform.target }} + maturin build --release --out dist --find-interpreter --target ${{ matrix.platform.target }} - name: Upload wheels uses: actions/upload-artifact@v4 with: