Bump conda-incubator/setup-miniconda from 2 to 3 #64
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: 'linux / pip-pre' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
permissions: | |
contents: read | |
jobs: | |
# PIP-pre + non-default stim channel + log level info | |
job: | |
name: 'linux pip 3.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' | |
steps: | |
- uses: actions/checkout@v3 | |
- run: ./tools/setup_xvfb.sh | |
name: 'Setup xvfb' | |
- uses: actions/setup-python@v4 | |
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' | |
- shell: bash -el {0} | |
run: mne_surf2bem --version | |
name: 'Check minimal commands' | |
- shell: bash -el {0} | |
run: ./tools/github_actions_install.sh | |
name: 'Install MNE' | |
- shell: bash -el {0} | |
run: ./tools/github_actions_infos.sh | |
name: 'Show infos' | |
# Uncomment if "xcb not found" Qt errors/segfaults come up again | |
# - shell: bash -el {0} | |
# run: LD_DEBUG=libs python -c "from PyQt6.QtWidgets import QApplication, QWidget; app = QApplication([]); import matplotlib; matplotlib.use('QtAgg'); import matplotlib.pyplot as plt; plt.figure()" | |
- shell: bash -el {0} | |
run: ./tools/get_testing_version.sh | |
name: 'Get testing version' | |
- uses: actions/cache@v3 | |
with: | |
key: ${{ env.TESTING_VERSION }} | |
path: ~/mne_data | |
name: 'Cache testing data' | |
- 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@v3 | |
if: success() | |
name: 'Upload coverage to CodeCov' |