diff --git a/README.md b/README.md
index b93d355..393197b 100644
--- a/README.md
+++ b/README.md
@@ -5,6 +5,7 @@
+[![CircleCI](https://circleci.com/gh/posquit0/Awesome-CV.svg?style=svg)](https://circleci.com/gh/posquit0/Awesome-CV)
[![Example](https://img.shields.io/badge/example-pdf-green.svg)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf)
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000..35c83a9
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,14 @@
+## Customize the test machine
+machine:
+ timezone:
+ Asia/Seoul
+
+ services:
+ - docker
+
+## Customize compile commands
+test:
+ override:
+ - docker run --rm -w "/doc" -v "$PWD":/doc thomasweise/texlive make
+ post:
+ - mv examples/*.pdf $CIRCLE_ARTIFACTS/
\ No newline at end of file