Skip to content

Commit

Permalink
Enable weekly cron job (#720)
Browse files Browse the repository at this point in the history
* Enable weekly cron job

* Update .github/workflows/pytest.yml

Co-authored-by: Matthias Feurer <lists@matthiasfeurer.de>

Co-authored-by: Matthias Feurer <lists@matthiasfeurer.de>
  • Loading branch information
franchuterivera and mfeurer authored Mar 15, 2021
1 parent add1773 commit 84960ee
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Tests

on: [push, pull_request]
on:
push:
pull_request:
schedule:
# Every Monday at 7AM UTC
- cron: '0 07 * * 1'

jobs:
ubuntu:
Expand All @@ -23,6 +28,9 @@ jobs:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
# A note on checkout: When checking out the repository that
# triggered a workflow, this defaults to the reference or SHA for that event.
# Otherwise, uses the default branch (master) is used.
with:
python-version: ${{ matrix.python-version }}
- name: Conda Install test dependencies
Expand Down

0 comments on commit 84960ee

Please sign in to comment.