Update installation Tips #3
Workflow file for this run
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: 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: | | ||
# $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 | ||