File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,14 @@ name: pysindy-commit
1111# on: workflow_dispatch
1212
1313on :
14- schedule :
15- # run twice a month during times when hopefully few other jobs are scheduled
16- - cron : ' 0 12 6,21 * *'
17-
14+ # Requires adding a Personal Access Token as a secret to pysindy in order
15+ # in order to trigger CI
16+ repository_dispatch :
17+ types : [pysindy-commit]
18+ # If you don't want to do all that, use cron trigger instead
19+ # schedule:
20+ # # run twice a month during times when hopefully few other jobs are scheduled
21+ # - cron: '0 12 6,21 * *'
1822
1923jobs :
2024 find-notebooks :
4751 - name : Install dependencies
4852 run : pip install -r examples/requirements.txt
4953 - name : " Install most current pysindy"
50- run : pip install pysindy[sbr,cvxpy,miosr] @ git+https://github/dynamicslab/pysindy@master
54+ run : pip install " pysindy[sbr,cvxpy,miosr] @ git+https://github/dynamicslab/pysindy@master"
5155 - name : " Run notebooks"
5256 run : |
5357 jupyter nbconvert --execute --to notebook --inplace ${{ matrix.files }}
You can’t perform that action at this time.
0 commit comments