Fix links in curve documentation (#49)

This commit is contained in:
Pratyush Mishra
2021-03-24 19:25:56 +03:00
committed by GitHub
parent 507cfa355a
commit 5c0dcd5ca1
14 changed files with 37 additions and 16 deletions

View File

@@ -86,6 +86,27 @@ jobs:
--all-features \
--exclude curve-benches"
docs:
name: Check Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: cargo doc --all --no-deps --document-private-items --all-features
uses: actions-rs/cargo@v1
with:
command: doc
args: --all --no-deps --document-private-items --all-features
check_no_std:
name: Check no_std
runs-on: ubuntu-latest