Skip to content

bump to 0.11 (#44) #115

bump to 0.11 (#44)

bump to 0.11 (#44) #115

Workflow file for this run

name: docs
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Run sccache stat for check before
shell: bash
run: ${SCCACHE_PATH} --show-stats
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-09-01
- name: cargo
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
run: |
rustup default nightly-2024-09-01
cargo doc --no-deps --all-features
- name: Run sccache stat for check after
shell: bash
run: ${SCCACHE_PATH} --show-stats