Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions .github/workflows/build-guidelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ on:
- "main"
# workflow_call trigger to make this workflow reusable
workflow_call:
# You can add inputs here if needed in the future
# inputs:
# example_input:
# required: false
# type: string
# default: 'default value'

jobs:
# Check Rust examples compile before building docs
check_rust_examples:
uses: ./.github/workflows/check-rust-examples.yml

build:
needs: check_rust_examples
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Build documentation
Expand Down Expand Up @@ -78,9 +78,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install typos
run: cargo install typos-cli
- name: Check for typos
run: typos

Loading