Skip to content

CI: test on Windows

CI: test on Windows #1

Workflow file for this run

name: Tests-Windows
on: [push]
jobs:
build-linux:
runs-on: widows-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- 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: Install dependencies
run: |
conda env update --file env-dev.yml --name base
- name: build Eelbrain
run: |
pip install -e .
- name: Test with pytest
run: |
pytest