Skip to content

Installation

Installation #11

Workflow file for this run

name: Installation
on:
schedule:
- cron: "0 0 1 * *" # First day of the month
jobs:
run:
name: Installation on (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@v3
- run: git fetch --prune --unshallow --tags
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install pip
run: |
python -m pip install --upgrade pip
pip3 install packaging
- name: Install package
run: pip install -e .
- name: Test module load
uses: jannekem/run-python-script-action@v1
with:
script: import murthy_lab_to_nwb