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.
zeroize_derive
1 parent e02838d commit f66e30aCopy full SHA for f66e30a
.github/workflows/zeroize.yml
@@ -99,6 +99,26 @@ jobs:
99
- run: ${{ matrix.deps }}
100
- run: cargo test --target ${{ matrix.target }}
101
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
+
122
# Cross-compiled tests
123
cross:
124
strategy:
0 commit comments