Skip to content

Commit f55028d

Browse files
committedJan 20, 2025
Merge branch 'main' into sensorselect
2 parents bea101d + 4f53a37 commit f55028d

File tree

411 files changed

+8348
-2557
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

411 files changed

+8348
-2557
lines changed
 

‎.circleci/config.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,9 @@ jobs:
218218
- restore_cache:
219219
keys:
220220
- data-cache-phantom-kit
221+
- restore_cache:
222+
keys:
223+
- data-cache-ds004388
221224
- run:
222225
name: Get data
223226
# This limit could be increased, but this is helpful for finding slow ones
@@ -252,7 +255,7 @@ jobs:
252255
name: Check sphinx log for warnings (which are treated as errors)
253256
when: always
254257
command: |
255-
! grep "^.* WARNING: .*$" sphinx_log.txt
258+
! grep "^.*\(WARNING\|ERROR\): " sphinx_log.txt
256259
- run:
257260
name: Show profiling output
258261
when: always
@@ -393,6 +396,10 @@ jobs:
393396
key: data-cache-phantom-kit
394397
paths:
395398
- ~/mne_data/MNE-phantom-KIT-data # (1 G)
399+
- save_cache:
400+
key: data-cache-ds004388
401+
paths:
402+
- ~/mne_data/ds004388 # (1.8 G)
396403

397404

398405
linkcheck:

‎.github/workflows/autofix.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16+
with:
17+
persist-credentials: false
1618
- uses: actions/setup-python@v5
1719
with:
1820
python-version: '3.12'
1921
- run: pip install --upgrade towncrier pygithub gitpython numpy
2022
- run: python ./.github/actions/rename_towncrier/rename_towncrier.py
2123
- run: python ./tools/dev/ensure_headers.py
22-
- uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a
24+
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c

0 commit comments

Comments
 (0)