Skip to content

Commit 3d7ec7c

Browse files
committed
fixing ci
Signed-off-by: Andrey Parfenov <[email protected]>
1 parent 5fde4fa commit 3d7ec7c

File tree

4 files changed

+16
-19
lines changed

4 files changed

+16
-19
lines changed

.github/workflows/run_libftdi.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@ jobs:
1616
# compile and prepare env
1717
- name: Clone Repository
1818
uses: actions/checkout@v2
19-
- name: Install Python 3.7
20-
uses: actions/setup-python@v3
19+
- name: Install Python 3.10
20+
uses: actions/setup-python@v5
2121
with:
22-
python-version: '3.7.7'
23-
architecture: 'x64'
22+
python-version: '3.11'
2423
- name: Install Ubuntu Dependencies
2524
if: (matrix.os == 'ubuntu-latest')
2625
run: |

.github/workflows/run_matlab.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,28 +22,28 @@ jobs:
2222
make
2323
make install
2424
- name: Set up Matlab
25-
uses: matlab-actions/setup-matlab@v1
25+
uses: matlab-actions/setup-matlab@v2
2626
- name: Run Signal Processing Test
27-
uses: matlab-actions/run-command@v1
27+
uses: matlab-actions/run-command@v2
2828
with:
2929
command: addpath('matlab_package/brainflow'),addpath('matlab_package/brainflow/examples'),addpath('matlab_package/brainflow/inc'),addpath('matlab_package/brainflow/lib'),SignalFiltering
3030
- name: Run Transforms Test
31-
uses: matlab-actions/run-command@v1
31+
uses: matlab-actions/run-command@v2
3232
with:
3333
command: addpath('matlab_package/brainflow'),addpath('matlab_package/brainflow/examples'),addpath('matlab_package/brainflow/inc'),addpath('matlab_package/brainflow/lib'),Transforms
3434
- name: Run EEG Mertrics Test
35-
uses: matlab-actions/run-command@v1
35+
uses: matlab-actions/run-command@v2
3636
with:
3737
command: addpath('matlab_package/brainflow'),addpath('matlab_package/brainflow/examples'),addpath('matlab_package/brainflow/inc'),addpath('matlab_package/brainflow/lib'),EEGMetrics
3838
- name: Run CSP Test
39-
uses: matlab-actions/run-command@v1
39+
uses: matlab-actions/run-command@v2
4040
with:
4141
command: addpath('matlab_package/brainflow'),addpath('matlab_package/brainflow/examples'),addpath('matlab_package/brainflow/inc'),addpath('matlab_package/brainflow/lib'),CSP
4242
- name: Run Spo2 Test
43-
uses: matlab-actions/run-command@v1
43+
uses: matlab-actions/run-command@v2
4444
with:
4545
command: addpath('matlab_package/brainflow'),addpath('matlab_package/brainflow/examples'),addpath('matlab_package/brainflow/inc'),addpath('matlab_package/brainflow/lib'),Spo2
4646
- name: Run ICA Test
47-
uses: matlab-actions/run-command@v1
47+
uses: matlab-actions/run-command@v2
4848
with:
4949
command: addpath('matlab_package/brainflow'),addpath('matlab_package/brainflow/examples'),addpath('matlab_package/brainflow/inc'),addpath('matlab_package/brainflow/lib'),ICA

.github/workflows/run_unix.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,10 @@ jobs:
2525
uses: actions/setup-dotnet@v3
2626
with:
2727
dotnet-version: '7.0.x'
28-
- name: Install Python 3.7
29-
uses: actions/setup-python@v3
28+
- name: Install Python 3.10
29+
uses: actions/setup-python@v5
3030
with:
31-
python-version: '3.7.7'
32-
architecture: 'x64'
31+
python-version: '3.11'
3332
- name: Install Python Dependencies
3433
if: (matrix.os == 'ubuntu-latest')
3534
run: |

.github/workflows/valgrind.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,10 @@ jobs:
6060
sudo -H apt-get install -y valgrind
6161
env:
6262
DEBIAN_FRONTEND: noninteractive
63-
- name: Install Python 3.7
64-
uses: actions/setup-python@v3
63+
- name: Install Python 3.10
64+
uses: actions/setup-python@v5
6565
with:
66-
python-version: '3.7.7'
67-
architecture: 'x64'
66+
python-version: '3.11'
6867
- name: Install Python Dependencies
6968
run: |
7069
sudo -H apt-get update -y

0 commit comments

Comments
 (0)