diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..3ef36270a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,13 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/openjdk:8u171-jdk + steps: + - checkout + - run: + name: "Pull Submodules" + command: | + git submodule init + git submodule update --remote + - run: mvn test