Browse Source

Fix python api link and add broken link check

check-broken-link
haixuanTao 1 year ago
parent
commit
57b78a5805
2 changed files with 9 additions and 9 deletions
  1. +2
    -1
      .github/workflows/ci.yml
  2. +7
    -8
      README.md

+ 2
- 1
.github/workflows/ci.yml View File

@@ -343,7 +343,7 @@ jobs:
sleep 10
dora stop --name ci-c-test --grace-duration 5s
dora destroy
- name: "Test CLI (C++)"
timeout-minutes: 30
# fail-fast by using bash shell explictly
@@ -414,6 +414,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gaurav-nelson/github-action-markdown-link-check@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal


+ 7
- 8
README.md View File

@@ -5,7 +5,7 @@
<h2 align="center">
<a href="https://www.dora-rs.ai">Website</a>
|
<a href="https://www.dora-rs.ai/docs/api/python-api">Python API</a>
<a href="https://dora-rs.ai/python-api.html">Python API</a>
-
<a href="https://docs.rs/dora-node-api/latest/dora_node_api/">Rust API</a>
|
@@ -61,15 +61,14 @@ Each node defines its inputs and outputs to connect with other nodes.
```yaml
nodes:
- id: webcam
custom:
source: webcam.py
inputs:
tick: dora/timer/millis/50
outputs:
- image
path: webcam.py
inputs:
tick: dora/timer/millis/50
outputs:
- image

- id: object_detection
custom:
path:
source: object_detection.py
inputs:
image: webcam/image


Loading…
Cancel
Save