Skip to content

Commit

Permalink
Add .circleci/ dir
Browse files Browse the repository at this point in the history
  • Loading branch information
epandurski committed Apr 2, 2019
1 parent e32e52d commit b0c224d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2.0
jobs:
build:
docker:
- image: python:3
steps:
- checkout
- run:
name: Run Tests
command: |
python setup.py test
workflows:
version: 2
commit:
jobs:
- build
nightly:
triggers:
- schedule:
cron: "30 5 * * *"
filters:
branches:
only:
- master
jobs:
- build

0 comments on commit b0c224d

Please sign in to comment.