Skip to content

fix:support np.array in traverse and optimize some log #38

fix:support np.array in traverse and optimize some log

fix:support np.array in traverse and optimize some log #38

Workflow file for this run

name: Docs Check

Check failure on line 1 in .github/workflows/docs-check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docs-check.yml

Invalid workflow file

(Line: 9, Col: 5): you may only define one of `paths` and `paths-ignore` for a single event, (Line: 16, Col: 5): you may only define one of `paths` and `paths-ignore` for a single event
on:
push:
paths:
- 'docs/**'
- '**.md'
- '**.rst'
paths-ignore:
- 'PULL_REQUEST_TEMPLATE.md'
pull_request:
paths:
- 'docs/**'
- '**.md'
- '**.rst'
paths-ignore:
- 'PULL_REQUEST_TEMPLATE.md'
jobs:
docs-check:
name: Validate Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check Markdown Links (Rust)
uses: lycheeverse/lychee-action@v2.6.1
with:
args: --verbose docs/**/*.md *.md
- name: Run Spell Check (cspell)
uses: streetsidesoftware/cspell-action@v2
with:
files: docs/**/*.md *.md
- name: Cleanup temporary files
run: |
rm -rf lychee/
- name: Format Check with Prettier
run: |
npm install -g prettier
npx prettier --check "docs/**/*.md" "**/*.md"