We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4bb10e commit 7fd302bCopy full SHA for 7fd302b
.circleci/config.yml
@@ -0,0 +1,16 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ working_directory: /ws/incubator-mnemonic
5
+ docker:
6
+ - image: mnemonic/mne
7
+ branches:
8
+ only:
9
+ - master
10
+ steps:
11
+ - checkout
12
+ - run:
13
+ name: Run tests
14
+ command: |
15
+ ls -l
16
+
.travis.yml
@@ -0,0 +1,20 @@
+language: python
+python:
+ - 2.7
+services:
+ - docker
+branches:
+ - stable
+install:
+ - docker build -t mne docker/docker-Ubuntu
+before_script:
17
+ - pip install mock
18
19
+script:
20
+ - docker ps | grep -q mne
0 commit comments