Skip to content

Commit

Permalink
fix: tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Etienne de Montalivet committed Jan 3, 2024
1 parent 5b7dd0f commit 7591b8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
CONDA_ENV: 'environment.yml'
strategy:
matrix:
python-version: ["3.9", "3.11"]
os: [ubuntu-latest, windows-latest]
python-version: ["3.9"]
os: [windows-latest]

name: tests_python-${{ matrix.python-version }}
name: tests_python-${{ matrix.python-version }}-${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
Expand All @@ -28,7 +28,7 @@ jobs:
environment-file: ${{ env.CONDA_ENV }}
- name: Install extra dependencies
shell: bash -el {0}
run: poetry install --with dev
run: poetry install --with dev && conda install -c conda-forge liblsl
- name: Test with pytest
shell: bash -el {0}
run: |
Expand Down

0 comments on commit 7591b8f

Please sign in to comment.