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.
2 parents 47acae9 + 53accb8 commit ca45b94Copy full SHA for ca45b94
.github/workflows/tests.yml
@@ -14,11 +14,14 @@ on:
14
jobs:
15
test:
16
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.
20
strategy:
21
fail-fast: false
22
matrix:
- os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
- python-version: ["3.10", "3.12"] # first and last supported Python version
23
+ os: [ "ubuntu-latest" ]
24
+ python-version: ["3.12"]
25
steps:
26
## Install Braindecode
27
- name: Checking Out Repository
0 commit comments