Skip to content

last try for now

last try for now #1

Workflow file for this run

name: Generate API Documentation
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
doc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Rust (nightly) with docs
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rust-docs
- name: Generate Rust API documentation (doc-only workspace)
working-directory: .doc
run: |
export RUSTDOCFLAGS="--cfg docsrs"
cargo +nightly doc --no-deps --workspace
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .doc/target/doc