We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81ffa58 commit e6b0dd8Copy full SHA for e6b0dd8
1 file changed
.github/workflows/non-omv.yml
@@ -0,0 +1,28 @@
1
+name: Non OMV tests
2
+
3
+on:
4
+ push:
5
+ branches: [ master, development, experimental ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ python-version: [ 2.7, 3.9 ]
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
20
+ - name: Set up Python ${{ matrix.python-version }}
21
+ uses: actions/setup-python@v2
22
+ with:
23
+ python-version: ${{ matrix.python-version }}
24
25
+ - name: Test python HH
26
+ run: |
27
+ cd Tutorial/Source
28
+ python HodgkinHuxley.py
0 commit comments