Skip to content

Commit 73f8612

Browse files
authored
Merge branch 'main' into main
2 parents b4000ca + bf799c4 commit 73f8612

24 files changed

+3795
-50
lines changed

.github/workflows/codespell.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Codespell
2+
on:
3+
pull_request:
4+
workflow_dispatch:
5+
6+
jobs:
7+
codespell:
8+
name: Check for spelling errors
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout repo
12+
uses: actions/checkout@v4
13+
- name: Codespell
14+
uses: codespell-project/actions-codespell@v2

.github/workflows/ruff.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Ruff
2+
on:
3+
pull_request:
4+
workflow_dispatch:
5+
6+
jobs:
7+
ruff:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout repo
11+
uses: actions/checkout@v4
12+
- name: Run ruff
13+
uses: astral-sh/ruff-action@v3

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,5 +172,8 @@ tests/test_data/photometry/*
172172
tests/test_data/behavior/IM-1478*
173173
tests/test_data/downloaded/*
174174

175+
# Frank lab nwbs and experimental notes
176+
frank_lab/data/*
177+
175178
# Box credentials
176179
.env

frank_lab/convert_behavior_Frank_lab.ipynb

Lines changed: 2930 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)