File tree Expand file tree Collapse file tree 4 files changed +33
-0
lines changed
Expand file tree Collapse file tree 4 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ language : python
2+ matrix :
3+ include :
4+ - env : TARGET=py3
5+ - env : TARGET=pep8
6+ - env : TARGET=mypy
7+ allow_failures :
8+ - env : TARGET=pep8
9+ - env : TARGET=mypy
10+ sudo : required
11+ services :
12+ - docker
13+ install :
14+ - true
15+ script :
16+ - docker build . -f .travis/${TARGET}.docker
Original file line number Diff line number Diff line change 1+ FROM kernsuite/base:5
2+ RUN docker-apt-install python3-pip
3+ RUN pip3 install mypy
4+ ADD . /code
5+ WORKDIR /code
6+ RUN mypy --ignore-missing-imports cwl_utils
Original file line number Diff line number Diff line change 1+ FROM kernsuite/base:5
2+ RUN docker-apt-install python3-pip
3+ RUN pip3 install pycodestyle
4+ ADD . /code
5+ WORKDIR /code
6+ RUN pycodestyle cwl_utils
Original file line number Diff line number Diff line change 1+ FROM kernsuite/base:5
2+ RUN docker-apt-install python3-pip
3+ ADD . /code
4+ WORKDIR /code
5+ RUN pip3 install .
You can’t perform that action at this time.
0 commit comments