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 e3321a4 commit 13e3cd4Copy full SHA for 13e3cd4
.github/workflows/test.yml
@@ -0,0 +1,35 @@
1
+name: Test pybdsim
2
+
3
+on:
4
+ push:
5
+ branches: [master github-tests]
6
+ pull_request:
7
+ branches: [master]
8
+ workflow_dispatch:
9
10
+jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ python-version: [3.9, 3.10, 3.11, 3.12]
18
19
+ steps:
20
+ - name: Checkout repository
21
+ uses: actions/checkout@v4
22
23
+ - name: Set up Python ${{ matrix.python-version }}
24
+ uses: actions/setup-python@v5
25
+ with:
26
+ python-version: ${{ matrix.python-version }}
27
28
+ - name: Install dependencies
29
+ run: |
30
+ python -m pip install --upgrade pip
31
+ pip install -e .[dev] # or adjust to your needs
32
33
+ - name: Run tests
34
35
+ pytest
0 commit comments