diff options
author | Jesús <heckyel@hyperbola.info> | 2021-02-22 15:15:34 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-02-22 15:15:34 -0500 |
commit | ca1fa46387645cc074f35c340af05be8e7c89482 (patch) | |
tree | 8a5f703e4067dd04edcc310e1b470d87f19a7769 | |
parent | c7278a1aeb8f04a5f40a6183fddad902e2d495a4 (diff) | |
download | libresocial-ca1fa46387645cc074f35c340af05be8e7c89482.tar.lz libresocial-ca1fa46387645cc074f35c340af05be8e7c89482.tar.xz libresocial-ca1fa46387645cc074f35c340af05be8e7c89482.zip |
[.build.yml]: fix command
-rw-r--r-- | .build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,11 +1,14 @@ image: debian/buster packages: - - python3-pip - nodejs - npm + - python3-pip + - virtualenv tasks: - test-json: | cd libresocial + virtualenv -p python3 venv + source venv/bin/activate pip3 install json-spec json validate --schema-file=lab/metadata.json --document-file=lab/metadata.json - test-css: | |