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
12 changes: 8 additions & 4 deletions .github/workflows/check_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@ name: Markdown Link Check
on:
push:
branches:
- 'main'
- "main"
pull_request:
branches:
- '*'
- "*"
schedule:
- cron: "0 0 * * 0" # Runs at 00:00 on Sunday

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruzickap/action-my-markdown-link-checker@v1
- uses: actions/checkout@v2
- uses: ruzickap/action-my-markdown-link-checker@v1
with:
config_file: .mlc_config.json
7 changes: 7 additions & 0 deletions .mlc_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"aliveStatusCodes": [
200,
206,
403
]
}
1 change: 1 addition & 0 deletions src/neurotechdevkit/imaging/beamform.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def beamform_delay_and_sum(
# Check input arguments
if iq_signals.ndim == 2:
num_time_samples, num_channels = iq_signals.shape
num_echoes = 1
elif iq_signals.ndim == 3:
num_time_samples, num_channels, num_echoes = iq_signals.shape
else:
Expand Down
Loading