Skip to content

Commit 44e76e6

Browse files
authored
Add CircleCI (#3)
* Add CircleCI config * Add workflow * Add CI badge
1 parent 4774c62 commit 44e76e6

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

.circleci/config.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2.1
2+
3+
jobs:
4+
test:
5+
docker:
6+
- image: circleci/golang:latest
7+
steps:
8+
- checkout
9+
- run: go test ./...
10+
11+
workflows:
12+
version: 2.1
13+
test:
14+
jobs:
15+
- test

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[![CircleCI](https://circleci.com/gh/charithe/durationcheck.svg?style=svg)](https://circleci.com/gh/charithe/durationcheck)
2+
3+
4+
15
Duration Check
26
===============
37

0 commit comments

Comments
 (0)