cry 0.1.5

Advance cryptography based on ECC and permutation cryptography.
Documentation
name: Rustdoc

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build
    - name: Run tests
      run: cargo test --all-features
    - name: Generate docs
      run: RUSTDOCFLAGS="--html-in-header ./docs-header.html" cargo doc --all-features --no-deps
    - name: Deploy
      uses: peaceiris/actions-gh-pages@v3
      with:
        github_token: ${{ secrets.GITHUB_TOKEN }}
        publish_dir: ./target/doc/