Skip to content

install mne[full]

install mne[full] #31

Workflow file for this run

name: style
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
pytest:
timeout-minutes: 10
strategy:
fail-fast: false
name: pre-commit
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install package
run: |
python -m pip install --progress-bar off --upgrade pip setuptools
python -m pip install --progress-bar off .[style]
- name: Display system information
run: project_hnp-sys_info --developer
- name: Run pre-commit hooks
uses: pre-commit/action@v3.0.1