refactor: separate Rust installation step in build workflow

This commit is contained in:
2026-01-11 08:03:49 +01:00
parent 840cf0ba99
commit 8145f1c7e4

View File

@@ -14,12 +14,18 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential git ca-certificates curl tar gzip \
rustc cargo
build-essential git ca-certificates curl tar gzip
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust (stable)
shell: bash
run: |
set -e
curl -fsSL https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
- name: Debug workspace
shell: bash
run: |