mirror of
https://github.com/arnaucube/miden-crypto.git
synced 2026-01-10 16:11:30 +01:00
ci: verify docs syntax
This commit is contained in:
committed by
Bobbin Threadbare
parent
dae9de9068
commit
1004246bfe
24
.github/workflows/ci.yml
vendored
24
.github/workflows/ci.yml
vendored
@@ -107,3 +107,27 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --no-default-features --target wasm32-unknown-unknown
|
args: --no-default-features --target wasm32-unknown-unknown
|
||||||
|
|
||||||
|
docs:
|
||||||
|
name: Verify the docs on ${{matrix.toolchain}}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
toolchain: [stable]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: Install rust
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: ${{matrix.toolchain}}
|
||||||
|
override: true
|
||||||
|
- name: Check docs
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
env:
|
||||||
|
RUSTDOCFLAGS: -D warnings
|
||||||
|
with:
|
||||||
|
command: doc
|
||||||
|
args: --verbose --all-features --keep-going
|
||||||
|
|||||||
Reference in New Issue
Block a user