Skip to content

Merge pull request #185 from alpenlabs/feature/reth-el-integration #9

Merge pull request #185 from alpenlabs/feature/reth-el-integration

Merge pull request #185 from alpenlabs/feature/reth-el-integration #9

Workflow file for this run

name: Docs
on:
push:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
docs:
name: Generate docs
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo doc --document-private-items
env:
RUSTDOCFLAGS: --show-type-layout --enable-index-page -Zunstable-options -D warnings
- name: Compress docs artifacts
run: tar czf vertex-core-docs.tar.gz target/doc
- name: Archive docs
uses: actions/upload-artifact@v4
if: always()
with:
name: docs
path: vertex-core-docs.tar.gz