Skip to content

Commit 53accb8

Browse files
ci: Reduce GitHub worker to Linux only
This commit reduces the GitHub Actions test matrix to run only on ubuntu-latest with a single Python version. This is a temporary measure to reduce costs. A TODO comment has been added to the workflow file to indicate that this change should be reverted in the future.
1 parent 47acae9 commit 53accb8

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)