crypt_guard 2.0.3

CryptGuard is a post-quantum cryptography framework with NIST FIPS 203/204/205 (ML-KEM, ML-DSA, SLH-DSA) plus legacy Kyber/Falcon/Dilithium, combined with AES and XChaCha20.
Documentation
name: RustTests

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        include:
          - name: default
            args: cargo test --verbose
          - name: ml-lane
            args: cargo test --no-default-features --features ml-kem-backend,ml-dsa-backend --verbose
          - name: legacy-lane
            args: cargo test --no-default-features --features legacy-pqclean --verbose

    steps:
    - uses: actions/checkout@v3
    - name: Run ${{ matrix.name }} tests
      run: ${{ matrix.args }}