From 8c3dc90f7607943de95e33dae2edf6d96126238e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Lindstr=C3=B6m?= Date: Sat, 14 Dec 2019 12:06:25 +0800 Subject: [PATCH] Add circleci config --- .circleci/config.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..82f97de68 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,15 @@ +--- +version: 2.0 + +jobs: + "Tomahawk - build, test": + docker: + - image: tomahawkmusicplayer/ubuntu:latest + steps: + - checkout + - run: /usr/local/bin/build-and-test.sh +workflows: + version: 2 + build_and_test: + jobs: + - "Tomahawk - build, test" \ No newline at end of file