diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..b51a499 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,23 @@ +version: 2 + +jobs: + build: + working_directory: ~/test + machine: true + branches: + ignore: + - /.*/ + steps: + - run: + # The Circle-CI build should not be active, but if this is not true for some reason, do a fast finish. + command: exit 0 + +workflows: + version: 2 + build_and_test: + jobs: + - build: + filters: + branches: + ignore: + - /.*/ diff --git a/circle.yml b/circle.yml deleted file mode 100644 index 29350ae..0000000 --- a/circle.yml +++ /dev/null @@ -1,9 +0,0 @@ -general: - branches: - ignore: - - /.*/ - -test: - override: - # The Circle-CI build should not be active, but if this is not true for some reason, do a fast finish. - - exit 0