chuchi-crypto 0.1.2

Crypto library providing encryption and signing.
Documentation
name: CI

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

env:
  CARGO_TERM_COLOR: always
  RUSTFLAGS: -Dwarnings
  RUST_BACKTRACE: 1

jobs:
  build_and_test:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - name: Install Rust
        uses: dtolnay/rust-toolchain@1.67
      - name: Build no features
        run: cargo build
      - name: Build cipher
        run: cargo build --features "cipher"
      - name: Build signature
        run: cargo build --features "signature"
      - name: Build all
        run: cargo build --all-features
      - name: Run tests
        run: cargo test --all-features