We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9143c1 commit a9dec9eCopy full SHA for a9dec9e
.github/workflows/test.yml
@@ -8,6 +8,10 @@ on:
8
- main
9
workflow_dispatch:
10
11
+env:
12
+ LSL_RELEASE_URL: "https://github.com/sccn/liblsl/releases/download/v1.16.2"
13
+ LSL_RELEASE: "1.16.2"
14
+
15
jobs:
16
style:
17
name: Check style
@@ -30,6 +34,12 @@ jobs:
30
34
- uses: actions/checkout@v4
31
35
- name: Install uv
32
36
uses: astral-sh/setup-uv@v4
37
+ - name: Install liblsl
38
+ run: |
39
+ sudo apt install -y libpugixml-dev
40
+ echo ${LSL_RELEASE_URL}/liblsl-${LSL_RELEASE}-$(lsb_release -sc)_amd64.deb
41
+ curl -L ${LSL_RELEASE_URL}/liblsl-${LSL_RELEASE}-$(lsb_release -sc)_amd64.deb -o liblsl.deb
42
+ sudo apt install ./liblsl.deb
33
43
- name: Build
44
run: uv sync --all-extras
45
- name: Run tests
0 commit comments