Skip to content

Commit 0b4e5ed

Browse files
committed
Merge branch 'master' of https://github.com/OpenByteDev/lnks
2 parents 92de872 + c7510d6 commit 0b4e5ed

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)