crypto-common: add SerializableState trait #739
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: kem | |
on: | |
pull_request: | |
paths: | |
- "kem/**" | |
- "Cargo.*" | |
push: | |
branches: master | |
defaults: | |
run: | |
working-directory: kem | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.60.0 # Next MSRV candidate | |
- stable | |
target: | |
- thumbv7em-none-eabi | |
- wasm32-unknown-unknown | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: RustCrypto/actions/cargo-cache@master | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
targets: ${{ matrix.target }} | |
- run: cargo build --no-default-features --release --target ${{ matrix.target }} | |
# TODO: use the reusable workflow after this crate will be part of the | |
# toot workspace | |
# minimal-versions: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: RustCrypto/actions/cargo-cache@master | |
# - uses: dtolnay/rust-toolchain@master | |
# with: | |
# toolchain: nightly | |
# - uses: RustCrypto/actions/cargo-hack-install@master | |
# - run: cargo update -Z minimal-versions | |
# - run: cargo hack test --release --feature-powerset | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.60.0 # Next MSRV candidate | |
- stable | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: RustCrypto/actions/cargo-cache@master | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- run: cargo check --all-features | |
- run: cargo test --no-default-features --release | |
- run: cargo test --release | |
- run: cargo test --all-features --release |