Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
pellet committed Jun 22, 2024
1 parent 4eb03e2 commit dabcaeb
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,18 +99,15 @@ jobs:
if: "startsWith(runner.os, 'Linux')"
run: |
make install-deps-wxpython
- name: Install MacOS dependencies
- name: Install PyTables via micromamba for MacOS
if: "startsWith(runner.os, 'macOS')"
uses: goanpeca/setup-miniconda@v3
with:
auto-activate-base: true
python-version: 3.9 # You can specify your Python version here
activate-environment: myenv
channels: conda-forge
miniconda-version: "latest"
- name: Install PyTables via Conda for MacOS
if: "startsWith(runner.os, 'macOS')"
run: conda install -y pytables
run: |
brew install micromamba
/opt/homebrew/opt/micromamba/bin/micromamba shell init -s bash -p ~/micromamba
source ~/.bash_profile
micromamba create -y -n EEG-ExPy
micromamba activate EEG-ExPy
micromamba install -y pytables
- name: Install dependencies
run: |
make build
Expand Down

0 comments on commit dabcaeb

Please sign in to comment.