Skip to content

Bump the bundler-deps group with 2 updates #311

Bump the bundler-deps group with 2 updates

Bump the bundler-deps group with 2 updates #311

Workflow file for this run

---
name: Documentation
"on":
push:
branches:
- trunk
pull_request:
branches:
- trunk
schedule:
- cron: "0 0 * * TUE"
concurrency:
group: docs-${{ github.head_ref }}
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
rustdoc:
name: Build Rust API docs
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: -D warnings -D rustdoc::broken_intra_doc_links --cfg docsrs
RUST_BACKTRACE: 1
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.7
- name: Install Rust toolchain
uses: artichoke/setup-rust/rustdoc@v1.12.1
- name: Install emscripten target
run: rustup target add wasm32-unknown-emscripten
- name: Set toolchain versions
run: |
echo "emscripten=$(cat emscripten-toolchain)" >> $GITHUB_OUTPUT
id: toolchain_versions
- name: Install Emscripten toolchain
uses: mymindstorm/setup-emsdk@6ab9eb1bda2574c4ddb79809fc9247783eaf9021 # v14
with:
version: ${{ steps.toolchain_versions.outputs.emscripten }}
no-cache: true
- name: Verify emcc version
run: emcc -v
- name: Check docs with no default features
run: cargo doc --workspace --no-default-features
- name: Check docs with no default features (emscripten)
run: cargo doc --workspace --no-default-features --target wasm32-unknown-emscripten
- name: Clean docs
run: cargo clean
- name: Build Documentation
run: cargo doc --workspace
- name: Build Documentation (emscripten)
run: cargo doc --workspace --target wasm32-unknown-emscripten