Skip to content

Commit

Permalink
Add new CircleCI config which also runs checks under Python 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kami committed Jan 24, 2019
1 parent 7ce6784 commit 051894e
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .circleci/config.yml
Expand Up @@ -112,7 +112,8 @@ jobs:

workflows:
version: 2
build_test_deploy:
# Workflow which runs on each push
build_test_deploy_on_push:
jobs:
- build_and_test_python27
- build_and_test_python36
Expand All @@ -122,3 +123,18 @@ workflows:
filters:
branches:
only: master
build_test_weekly:
jobs:
- build_and_test_python27
- build_and_test_python36
# Workflow which runs nightly - note we don't perform deploy job on nightly
# build
triggers:
# Run nightly build for the pack
- schedule:
# NOTE: We run it at 1 am UTC on every Saturday
cron: "0 1 * * 6"
filters:
branches:
only:
- master

0 comments on commit 051894e

Please sign in to comment.