Skip to content

Commit e6b0dd8

Browse files
authored
Create non-omv.yml
1 parent 81ffa58 commit e6b0dd8

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/non-omv.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Non OMV tests
2+
3+
on:
4+
push:
5+
branches: [ master, development, experimental ]
6+
pull_request:
7+
branches: [ master, development, experimental ]
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

Comments
 (0)