Skip to content

Update installation Tips #3

Update installation Tips

Update installation Tips #3

name: Creates Conda Install for Installation Tips
on:
workflow_dispatch:
pull_request:
types: [synchronize, opened, reopened]
schedule:
- cron: "0 12 * * *" # Daily at noon UTC
jobs:
testing:
name: Build Conda Env on ${{ matrix.os }} OS
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
label: linux_dandi
- os: macos-latest
label: mac
- os: windows-latest
label: windows
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Add conda to system path
run: |

Check failure on line 34 in .github/workflows/installation-tips-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/installation-tips-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 34
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Test Conda Environment Creation
uses: conda-incubator/[email protected]
with:
environment-file: ./installations_tips/full_spikeinterface_environment_${{ matrix.label }}.yml