Skip to content

Commit f66e30a

Browse files
authored
CI: actually test zeroize_derive (#1319)
1 parent e02838d commit f66e30a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/zeroize.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,26 @@ jobs:
9999
- run: ${{ matrix.deps }}
100100
- run: cargo test --target ${{ matrix.target }}
101101

102+
# Custom derive tests
103+
test-derive:
104+
runs-on: ubuntu-latest
105+
defaults:
106+
run:
107+
working-directory: zeroize_derive
108+
strategy:
109+
matrix:
110+
rust:
111+
- 1.85.0 # MSRV
112+
- stable
113+
steps:
114+
- uses: actions/checkout@v6
115+
- uses: RustCrypto/actions/cargo-cache@master
116+
- uses: dtolnay/rust-toolchain@master
117+
with:
118+
toolchain: ${{ matrix.rust }}
119+
- run: cargo test
120+
- run: cargo test --release
121+
102122
# Cross-compiled tests
103123
cross:
104124
strategy:

0 commit comments

Comments
 (0)