diff options
author | Jesús <heckyel@hyperbola.info> | 2021-02-20 12:14:03 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-02-20 12:14:03 -0500 |
commit | 5890c6d0908527a7eddf51320f39be752d600d7a (patch) | |
tree | 09e897f20d562433b7973057c7689cb33a4b7783 | |
parent | 5c00ea148c75afd2e84f10802b7b3b8220befc62 (diff) | |
download | hypervideo-gui-5890c6d0908527a7eddf51320f39be752d600d7a.tar.lz hypervideo-gui-5890c6d0908527a7eddf51320f39be752d600d7a.tar.xz hypervideo-gui-5890c6d0908527a7eddf51320f39be752d600d7a.zip |
Add .build.yml file
-rw-r--r-- | .build.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..d683521 --- /dev/null +++ b/.build.yml @@ -0,0 +1,12 @@ +image: debian/sid +packages: + - python3-pip + - virtualenv +tasks: + - flake8: | + cd hypervideo-gui + virtualenv -p python3 venv + source venv/bin/activate + python --version + pip install flake8-per-file-ignores nose + flake8 . |