File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 11name : Tests
22
3- on : [push, pull_request]
3+ on :
4+ push :
5+ pull_request :
6+ schedule :
7+ # Every Monday at 7AM UTC
8+ - cron : ' 0 07 * * 1'
49
510jobs :
611 ubuntu :
@@ -17,12 +22,15 @@ jobs:
1722 - python-version : 3.7
1823 use-conda : false
1924 use-dist : true
20- fail-fast : false
25+ fail-fast : false
2126
2227 steps :
2328 - uses : actions/checkout@v2
2429 - name : Setup Python ${{ matrix.python-version }}
2530 uses : actions/setup-python@v2
31+ # A note on checkout: When checking out the repository that
32+ # triggered a workflow, this defaults to the reference or SHA for that event.
33+ # Otherwise, uses the default branch (master) is used.
2634 with :
2735 python-version : ${{ matrix.python-version }}
2836 - name : Conda Install test dependencies
You can’t perform that action at this time.
0 commit comments