Update README.md #235
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
incubator: | |
name: build (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 3 | |
matrix: | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
python-version: ["3.9"] | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- uses: conda-incubator/[email protected] | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Install all packages | |
shell: bash -l {0} | |
run: | | |
conda activate test | |
cd .. | |
git clone https://github.com/int-brain-lab/iblapps.git | |
pip install --editable iblapps | |
cd iblenv | |
pip install --requirement requirements.txt | |
echo "----- pip list -----" | |
pip list |