Skip to content

Commit 773239c

Browse files
authored
CI (#8)
* CI on: py 3.7 and 3.8, test on macos, all branches
1 parent 68665d0 commit 773239c

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/continuous.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
name: Build
22

3-
on:
4-
push:
5-
branches:
6-
- master
7-
pull_request:
8-
branches:
9-
- master
3+
on: [push, pull_request]
104

115
jobs:
126
Build:
@@ -16,7 +10,7 @@ jobs:
1610
fail-fast: false
1711
matrix:
1812
os: [ubuntu-latest, windows-latest, macOS-latest]
19-
python-version: [3.6, 3.7, 3.8]
13+
python-version: [3.7, 3.8]
2014
config: [Debug, Release]
2115
include:
2216
- os: ubuntu-latest
@@ -71,7 +65,7 @@ jobs:
7165
7266
# macos segfaults???
7367
- name: Tests
74-
if: matrix.name == 'Linux' || (matrix.config == 'Debug' && runner.os == 'Windows')
68+
if: matrix.name == 'Linux' || matrix.name == 'MacOS' || (matrix.config == 'Debug' && runner.os == 'Windows')
7569
run: |
7670
python test/test_bending.py
7771
python test/test_gravity.py

0 commit comments

Comments
 (0)