ENH: Add show hide menu with freesurfer atlas #247
Workflow file for this run
This file contains 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: Style | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }} | |
cancel-in-progress: true | |
on: [push, pull_request] | |
jobs: | |
check-style: | |
name: Ruff codespell black | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- name: Install ruff and codespell | |
run: pip install ruff codespell tomli | |
- run: ruff mne_gui_addons/ | |
- run: codespell -i0 mne_gui_addons/ | |
- uses: psf/black@stable |