Skip to content

Commit

Permalink
Run the tests nightly (#103)
Browse files Browse the repository at this point in the history
This is to ensure that we continue to have confidence that the
functionality works, and so that we are alerted to any regressions.

Using the [GitHub Actions scheduler functionality][1]

Closes #33

[1]: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events
  • Loading branch information
johnboyes authored Aug 17, 2020
1 parent c22318f commit c3d70c2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
on: [push] # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
# Run the tests on every push, and also at 3am every night
push:
schedule:
- cron: '0 3 * * *' # * is a special character in YAML so you have to quote this string
name: Tests
jobs:
tests:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/virtual_test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
on: [push] # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
# Run the tests on every push, and also at 3am every night
push:
schedule:
- cron: '0 3 * * *' # * is a special character in YAML so you have to quote this string
name: Tests
jobs:
tests:
Expand Down

0 comments on commit c3d70c2

Please sign in to comment.