Skip to content

Commit ca45b94

Browse files
Merge pull request #168 from sccn/reduce-github-worker
ci: Reduce GitHub worker to Linux only
2 parents 47acae9 + 53accb8 commit ca45b94

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@ on:
1414
jobs:
1515
test:
1616
runs-on: ${{ matrix.os }}
17+
# TODO: This is a temporary measure to reduce costs.
18+
# The matrix should be expanded back to multiple OS and Python versions
19+
# once the cost issue is resolved.
1720
strategy:
1821
fail-fast: false
1922
matrix:
20-
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
21-
python-version: ["3.10", "3.12"] # first and last supported Python version
23+
os: [ "ubuntu-latest" ]
24+
python-version: ["3.12"]
2225
steps:
2326
## Install Braindecode
2427
- name: Checking Out Repository

0 commit comments

Comments
 (0)