aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-02-22 15:15:34 -0500
committerJesús <heckyel@hyperbola.info>2021-02-22 15:15:34 -0500
commitca1fa46387645cc074f35c340af05be8e7c89482 (patch)
tree8a5f703e4067dd04edcc310e1b470d87f19a7769
parentc7278a1aeb8f04a5f40a6183fddad902e2d495a4 (diff)
downloadlibresocial-ca1fa46387645cc074f35c340af05be8e7c89482.tar.lz
libresocial-ca1fa46387645cc074f35c340af05be8e7c89482.tar.xz
libresocial-ca1fa46387645cc074f35c340af05be8e7c89482.zip
[.build.yml]: fix command
-rw-r--r--.build.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.build.yml b/.build.yml
index 46516d3..9f227f4 100644
--- a/.build.yml
+++ b/.build.yml
@@ -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: |