File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,19 +21,27 @@ jobs:
2121 target : ["x86_64-pc-windows-msvc", "x86_64-pc-windows-gnu", "i686-pc-windows-msvc"]
2222 steps :
2323 - uses : actions/checkout@v6
24-
2524 - name : Install latest rust ${{ matrix.toolchain }} for ${{ matrix.target }}
2625 uses : dtolnay/rust-toolchain@master
2726 with :
2827 target : ${{ matrix.target }}
2928 toolchain : ${{ matrix.toolchain }}
30-
3129 - name : Build
3230 run : cargo build --target ${{ matrix.target }} --all-targets
33-
3431 - name : Test
3532 run : cargo test --target ${{ matrix.target }} --all-targets --all-features -- --nocapture
3633
34+ hack :
35+ runs-on : windows-latest
36+ steps :
37+ - uses : actions/checkout@v6
38+ - name : Install latest nightly
39+ uses : dtolnay/rust-toolchain@nightly
40+ - name : cargo install cargo-hack
41+ uses : taiki-e/install-action@cargo-hack
42+ - name : cargo hack
43+ run : cargo hack --feature-powerset check
44+
3745 documentation :
3846 runs-on : windows-latest
3947 steps :
You can’t perform that action at this time.
0 commit comments