Skip to content

Commit 5f1811d

Browse files
committed
Merge #308: chore(ci): add windows build job to rust workflow
47a56a5 chore(ci): add windows build job to rust workflow (stringhandler) Pull request description: Add a CI job to run tests on windows. #303 broke `cargo test` on windows (fixed in #307). This is a job to check that tests pass on windows ACKs for top commit: KyrylR: ACK 47a56a5; ran tests locally, code review Tree-SHA512: 98e22971454668108b5391c3fd868350097b2e4f8c8db623522319814e2e98ec01f8e8b274c4d4513b6bced0660943c7909e13e3e5fff62522a509219fc70bfe
2 parents 275cefd + 47a56a5 commit 5f1811d

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/rust.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,19 @@ jobs:
4444
- name: "Run test script"
4545
run: ./maintainer-tools/ci/run_task.sh stable
4646

47+
Windows:
48+
name: Test - Windows stable toolchain
49+
runs-on: windows-latest
50+
strategy:
51+
fail-fast: false
52+
steps:
53+
- name: "Checkout repo"
54+
uses: actions/checkout@v4
55+
- name: "Select toolchain"
56+
uses: dtolnay/rust-toolchain@stable
57+
- name: "Run tests"
58+
run: cargo test
59+
4760
Nightly:
4861
name: Test - nightly toolchain
4962
needs: Prepare

0 commit comments

Comments
 (0)