circle-ci config

This commit is contained in:
klemek
2020-04-25 11:26:28 +02:00
parent d86f5ef7cb
commit ae6e5c6c30
2 changed files with 22 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
version: 2.1
jobs:
build-docs:
docker:
- image: circleci/python:latest
steps:
- checkout
- run:
command: |
python docs.build
git config user.email "workflow@circleci.com"
git config user.name "CircleCI"
git add docs/README.md
git diff-index --quiet HEAD || git commit -m 'Automated README [ci skip]'
git push origin master
name: Building docs
workflows:
main:
jobs:
- build-docs