Skip to content

Commit 00c075a

Browse files
author
Nhi Nguyen
committed
Schedule tests to run every hour (#783)
1 parent 9bc9b4d commit 00c075a

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.circleci/config.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22

33
jobs:
4-
build:
4+
build_and_test:
55
macos:
66
xcode: "9.4.1"
77
steps:
@@ -31,3 +31,20 @@ jobs:
3131
- run: zip -FSr Pods.zip ./Pods
3232
- store_artifacts:
3333
path: Pods.zip
34+
35+
workflows:
36+
version: 2
37+
build_and_test:
38+
jobs:
39+
- build_and_test
40+
scheduled_e2e_test:
41+
triggers:
42+
- schedule:
43+
cron: "30 * * * *"
44+
filters:
45+
branches:
46+
only:
47+
- master
48+
- scheduled_e2e_testing
49+
jobs:
50+
- build_and_test

0 commit comments

Comments
 (0)