chore(doc): Update guide dx/dir-structure/guide [#24] #8
Workflow file for this run
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
| name: Check Documentation Patched | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: ["trunk"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| COLOR: always | |
| NEXUS_GROUP_BEGIN: "::group::{group}" | |
| NEXUS_GROUP_END: "::endgroup::" | |
| jobs: | |
| # Build job | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install rust | |
| run: rustup install nightly && rustup default nightly && rustup component add rust-analyzer | |
| - name: Install dependencies | |
| run: sudo apt update && sudo apt install openssl libssl-dev | |
| - name: Build nexus | |
| run: cargo build -p nexus | |
| - name: Check if documentation is patched | |
| run: cargo nexus build-sys doc-patchup-rustdocs --check | |
| timeout-minutes: 10 |