Skip to content

chore(doc): Update guide dx/dir-structure/guide [#24] #8

chore(doc): Update guide dx/dir-structure/guide [#24]

chore(doc): Update guide dx/dir-structure/guide [#24] #8

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