-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
33 lines (29 loc) · 768 Bytes
/
circle.yml
File metadata and controls
33 lines (29 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
general:
artifacts:
- build/reports
machine:
timezone:
Asia/Tokyo
python:
version: 3.6.2
dependencies:
pre:
- pip install jupyter
deployment:
deploy:
branch: master
commands:
- jupyter nbconvert --to markdown about_logging.ipynb --output README.md
- git config --global user.email kimihiro.nisimura@gmail.com
- git config --global user.name kimihiro_n
- git add README.md
- git commit -m "build README.md [ci skip]"
- git pull git@github.com:pistatium/about_python_logging.git master
- git push git@github.com:pistatium/about_python_logging.git master
test:
pre:
- echo "-----start test-----"
override:
- echo "-----no test-----"
post:
- echo "-----end test-----"