cryptoys 0.1.1

a cryptographic library filled with cryptographic toys(mostly historical ciphers)
Documentation
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose
    - name: test formatting
      run: |
        rustup component add rustfmt
        cargo fmt --all --check