Skip to content

Commit e3f385c

Browse files
author
Jeffrey D. King
committed
Added scheduled CircleCI build tests
1 parent d0f8f3a commit e3f385c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.circleci/config.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,18 @@ jobs:
2424
# specify any bash command here prefixed with `run: `
2525
- run: go get -v -t -d ./...
2626
- run: go test -v -race ./...
27+
workflows:
28+
version: 2
29+
commit:
30+
jobs:
31+
- build
32+
weekly:
33+
triggers:
34+
- schedule:
35+
cron: "0 10 * * 1"
36+
filters:
37+
branches:
38+
only:
39+
- master
40+
jobs:
41+
- build

0 commit comments

Comments
 (0)