diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000000..e6d068e8441 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,10 @@ +# Circle CI 2.0 Config File +# This config file will prevent tests from being run on the gh-pages branch. +version: 2 +jobs: + build: + machine: true + branches: + ignore: gh-pages + steps: + -run: echo "Skipping tests on gh-pages branch"