libaes 0.7.0

AES cipher in safe Rust with no dependencies
Documentation
name: Build and Test

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-20.04

    steps:
    - uses: actions/checkout@v2
    - name: Install Rust version
      run: rustup toolchain install 1.46.0
    - name: Select Rust version
      run: rustup default 1.46.0
    - name: Install clippy
      run: rustup component add clippy
    - name: Install cargo fmt
      run: rustup component add rustfmt
    - name: Run cargo fmt and fail if any warnings
      run: cargo fmt -- --check
    - name: Build
      run: cargo build
    - name: Run tests
      run: cargo test
    - name: Run Clippy
      run: cargo clippy