Refactor API: split custom and common algo breaking technics. #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test documentation on Linux nightly | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy-documentation: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release --all-features | |
- name: Generate documentation | |
run: | | |
cargo doc --package cryptatools-core --workspace --no-deps #--exclude clap,rustix |