Skip to content

Commit 5dac895

Browse files
authored
add workflows
1 parent b197b56 commit 5dac895

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.circleci/config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,20 @@ jobs:
1616
- run: go get -v -t -d ./...
1717
- run: go test -v ./... -race -coverprofile=coverage.txt -covermode=atomic
1818
- run: bash <(curl -s https://codecov.io/bash) -t ${CODECOV_TOKEN}
19+
20+
workflows:
21+
version: 2
22+
commit:
23+
jobs:
24+
- build
25+
nightly:
26+
triggers:
27+
- schedule:
28+
cron: "0 0 * * *"
29+
filters:
30+
branches:
31+
only:
32+
- master
33+
jobs:
34+
- build
35+

0 commit comments

Comments
 (0)