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 68665d0 commit 773239cCopy full SHA for 773239c
.github/workflows/continuous.yml
@@ -1,12 +1,6 @@
1
name: Build
2
3
-on:
4
- push:
5
- branches:
6
- - master
7
- pull_request:
8
9
+on: [push, pull_request]
10
11
jobs:
12
Build:
@@ -16,7 +10,7 @@ jobs:
16
fail-fast: false
17
matrix:
18
os: [ubuntu-latest, windows-latest, macOS-latest]
19
- python-version: [3.6, 3.7, 3.8]
13
+ python-version: [3.7, 3.8]
20
14
config: [Debug, Release]
21
15
include:
22
- os: ubuntu-latest
@@ -71,7 +65,7 @@ jobs:
71
65
72
66
# macos segfaults???
73
67
- 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')
75
69
run: |
76
70
python test/test_bending.py
77
python test/test_gravity.py
0 commit comments