1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-21 08:21:54 +02:00

Add circleci config

This commit is contained in:
Hugo Lindström 2019-12-14 12:06:25 +08:00
parent ba5759d453
commit 8c3dc90f76

15
.circleci/config.yml Normal file
View File

@ -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"