From 47a56a5d146aada058c2e69d3ac864447c36b395 Mon Sep 17 00:00:00 2001 From: stringhandler Date: Thu, 30 Apr 2026 13:32:36 +0200 Subject: [PATCH] =?UTF-8?q?=EF=BB=BFchore(ci):=20add=20windows=20build=20j?= =?UTF-8?q?ob=20to=20rust=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/rust.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 0dc328af..2d2c3694 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -44,6 +44,19 @@ jobs: - name: "Run test script" run: ./maintainer-tools/ci/run_task.sh stable + Windows: + name: Test - Windows stable toolchain + runs-on: windows-latest + strategy: + fail-fast: false + steps: + - name: "Checkout repo" + uses: actions/checkout@v4 + - name: "Select toolchain" + uses: dtolnay/rust-toolchain@stable + - name: "Run tests" + run: cargo test + Nightly: name: Test - nightly toolchain needs: Prepare