tests / linux / pip #1735
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: 'tests / linux / pip' | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
schedule: | |
- cron: "0 13 * * 1" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.type }} | |
cancel-in-progress: true | |
jobs: | |
# PIP + non-default stim channel + log level info | |
job: | |
name: 'py3.10' | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
shell: bash | |
env: | |
DISPLAY: ':99.0' | |
MNE_LOGGING_LEVEL: 'info' | |
MNE_STIM_CHANNEL: 'STI101' | |
OPENBLAS_NUM_THREADS: '1' | |
PYTHONUNBUFFERED: '1' | |
PYTHON_VERSION: '3.10' | |
strategy: | |
fail-fast: false | |
matrix: | |
MNEPYTHON: ['stable', 'dev'] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- run: ./tools/setup_xvfb.sh | |
name: 'Setup xvfb' | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
name: 'Setup python' | |
- shell: bash -el {0} | |
run: | | |
./tools/github_actions_dependencies.sh | |
source tools/get_minimal_commands.sh | |
name: 'Install dependencies' | |
env: | |
MNEPYTHON: ${{ matrix.MNEPYTHON }} | |
- shell: bash -el {0} | |
run: ./tools/github_actions_install.sh | |
name: 'Install MNE-NIRS' | |
- shell: bash -el {0} | |
run: ./tools/github_actions_infos.sh | |
name: 'Show infos' | |
- shell: bash -el {0} | |
run: ./tools/github_actions_download.sh | |
name: 'Download testing data' | |
- shell: bash -el {0} | |
run: ./tools/github_actions_locale.sh | |
name: 'Print locale' | |
- shell: bash -el {0} | |
run: ./tools/github_actions_test.sh | |
name: 'Run tests' | |
- uses: codecov/codecov-action@v1 | |
if: success() | |
name: 'Upload coverage to CodeCov' |