From 55e5414ecb4541058a2f443ea49c1d5dd5d43074 Mon Sep 17 00:00:00 2001 From: Rhamon Date: Mon, 21 Feb 2022 21:00:50 +0100 Subject: [PATCH 1/2] add dummy.txt --- dummy.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 dummy.txt diff --git a/dummy.txt b/dummy.txt new file mode 100644 index 00000000..e69de29b From d57f6f4938435abbe51088a51568c44de5cdd6e8 Mon Sep 17 00:00:00 2001 From: Rhamon Date: Mon, 21 Feb 2022 21:12:19 +0100 Subject: [PATCH 2/2] added .circleci --- .circleci/config.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..bc97a1d8 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,20 @@ +version: 2 +jobs: + build: + working_directory: /dockerapp + docker: + - image: docker:17.05.0-ce-git + steps: + - checkout + - setup_remote_docker + - run: + name: Install dependencies + command: | + apk add --no-cache py-pip=9.0.0-r1 + pip install docker-compose==1.15.0 + - run: + name: Run tests + command: | + docker-compose up -d + docker-compose run dockerapp python test.py + \ No newline at end of file