Skip to content

Never include the pinhole / camera part in a 2D space view #4675

Never include the pinhole / camera part in a 2D space view

Never include the pinhole / camera part in a 2D space view #4675

Workflow file for this run

name: Markdown spellcheck and link check
on:
pull_request:
push:
branches:
- "main"
permissions:
contents: read
jobs:
spellcheck:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: streetsidesoftware/cspell-action@v2
with:
config: "docs/cspell.json"
files: "**/*.md"
linkinator:
name: linkinator
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jprochazk/linkinator-action@main
with:
paths: "**/*.md"
linksToSkip: "https://crates.io/crates/.*, https://github.com/rerun-io/rerun/pull/.*" # Avoid crates.io rate-limiting, and skip changelog PR links (so many)
retry: true
retryErrors: true
retryErrorsCount: 5
retryErrorsJitter: 2000