Add optional edfio parsing engine to read_raw_edf #9019
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Changelog | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| types: [opened, synchronize, labeled, unlabeled] | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| changelog_checker: | |
| name: Check towncrier entry in doc/changes/dev/ | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: scientific-python/action-towncrier-changelog@v2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| BOT_USERNAME: changelog-bot | |
| - uses: actions/setup-python@v7.0.0 | |
| - run: python tools/check_changelog_names.py # faster than CircleCI |