Skip to content

docs: add CODEOWNERS #3

docs: add CODEOWNERS

docs: add CODEOWNERS #3

Workflow file for this run

name: Doc Links

Check failure on line 1 in .github/workflows/doc-links.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/doc-links.yml

Invalid workflow file

(Line: 8, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5@11bd71901bbe5b1630ceea73d27597364c9af683'
on: [push, pull_request]
jobs:
links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: dtolnay/rust-toolchain@stable
- run: |
if [ ! -f tooling/doc-link-check ]; then
mkdir -p tooling
if [ -d phenotype-tooling ]; then
cd phenotype-tooling && cargo build --release --bin doc-link-check 2>&1 | tail -5
ln -sf ../phenotype-tooling/target/release/doc-link-check ../tooling/
else
echo "Note: doc-link-check not available; skipping" && exit 0
fi
fi
tooling/doc-link-check docs/ || true