mirror of
https://github.com/jantic/DeOldify.git
synced 2026-09-01 15:36:32 +08:00
dff82b6d2e
All the files marked as executable were bugging me, so I ran this: find . -executable -type f -print0 | xargs -0 grep -L '#!' | xargs chmod -x
11 lines
181 B
YAML
11 lines
181 B
YAML
sudo: false
|
|
language: python
|
|
install: pip install tox
|
|
matrix:
|
|
include:
|
|
- python: "3.6"
|
|
env: TOX_ENV=static
|
|
- python: "3.6"
|
|
env: TOX_ENV=format
|
|
script: tox -e $TOX_ENV
|