Skip to content

Commit b75f95c

Browse files
authored
Schedule e2e tests every 20 minutes past the hour (#593)
1 parent 6b15816 commit b75f95c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,19 @@ jobs:
4949
else
5050
echo "==> ignoring non-master branch"
5151
fi
52+
workflows:
53+
version: 2
54+
build_and_test:
55+
jobs:
56+
- build
57+
scheduled_e2e_test:
58+
triggers:
59+
- schedule:
60+
cron: "20 * * * *"
61+
filters:
62+
branches:
63+
only:
64+
- master
65+
- scheduled_e2e_testing
66+
jobs:
67+
- build

0 commit comments

Comments
 (0)