Merge pull request #264 from yegor256/version-up #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: Copyright (c) 2023-2025 Yegor Bugayenko | |
# SPDX-FileCopyrightText: Copyright (c) 2025 owtotwo | |
# SPDX-License-Identifier: MIT | |
--- | |
# yamllint disable rule:line-length | |
name: docs | |
'on': | |
push: | |
pull_request: | |
jobs: | |
build: | |
timeout-minutes: 15 | |
runs-on: ubuntu-24.04 | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTDOCFLAGS: '--cfg docsrs' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
- run: cargo +nightly test --doc --all-features -- --show-output | |
- run: cargo +nightly doc --all-features --no-deps |