We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed11036 commit a33cce1Copy full SHA for a33cce1
.github/workflows/tests.yml
@@ -1,6 +1,10 @@
1
---
2
name: Test
3
-on: push # yamllint disable-line rule:truthy
+on: # yamllint disable-line rule:truthy
4
+ # Run the tests on every push, and also at 3am every night
5
+ push:
6
+ schedule:
7
+ - cron: '0 3 * * *' # * is a special character in YAML so you have to quote this string
8
env:
9
ASSERT_VERSION: "| grep -q $HOVERFLY_VERSION"
10
ASSERT_HOVERFLY_NOT_INSTALLED: "! hoverfly -version"
0 commit comments