We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 502418f commit 7d11dd1Copy full SHA for 7d11dd1
.github/workflows/ci.yml
@@ -37,3 +37,29 @@ jobs:
37
cargo build --verbose
38
- run: |
39
cargo test --verbose
40
+ windows_build:
41
+ name: windows ${{ matrix.rust }}
42
+ runs-on: windows-latest
43
+ strategy:
44
+ fail-fast: false
45
+ matrix:
46
+ rust:
47
+ - 1.30.0
48
+ - stable
49
+ - beta
50
+ - nightly
51
+ steps:
52
+ - uses: actions/checkout@v4
53
+ - uses: dtolnay/rust-toolchain@master
54
+ with:
55
+ toolchain: ${{ matrix.rust }}
56
+ - run: rustup component add rustfmt-preview
57
+ - name: cargo fmt --all -- --check if stable
58
+ run: |
59
+ if [ "${{ matrix.rust }}" = "stable" ]; then
60
+ cargo fmt --all -- --check
61
+ fi
62
+ - run: |
63
+ cargo build --verbose
64
65
+ cargo test --verbose
0 commit comments