Skip to content

Commit 2bb277e

Browse files
authored
Merge pull request #1 from dbalan/ci
Setup CI for project.
2 parents 8c96610 + f775c78 commit 2bb277e

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.circleci/config.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: haskell:latest
6+
steps:
7+
- checkout
8+
- run: DEBIAN_FRONTEND=noninteractive apt-get update
9+
- run: DEBIAN_FRONTEND=noninteractive apt-get install -y xz-utils make
10+
- run: stack upgrade
11+
- run: stack setup
12+
- run: stack build
13+
- run: stack test
14+

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# idid what?
22

3+
[![CircleCI](https://circleci.com/gh/dbalan/idid/tree/master.svg?style=svg)](https://circleci.com/gh/dbalan/idid/tree/master)
4+
35
Simple CLI to keep track of what I did. Data is stored in a text file, and the format is quite simple. <date-time> <msg>
46

57
## API

0 commit comments

Comments
 (0)