diff options
author | Matthew Lemon <y@yulqen.org> | 2023-10-15 16:29:26 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-10-15 16:29:26 +0100 |
commit | 63fd8291986e156436e48de7223986dff5ede861 (patch) | |
tree | 08207b8e49487a1940fd242f18b30ebbc95c5d73 | |
parent | 7c7d8eb3d2c6e75b3908cf759b4615865122e08d (diff) |
-rw-r--r-- | .build.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..73bc794 --- /dev/null +++ b/.build.yml @@ -0,0 +1,18 @@ +image: archlinux +sources: + - git@git.sr.ht:~yulqen/datamaps +packages: + - python + - python-pip +secrets: + - 590eb309-3589-4444-bcbe-81f7a29024a8 +tasks: + - setup: | + mkdir -p /home/build/Documents/datamaps/output + mkdir -p /home/build/Documents/datamaps/input + - test: | + python -m venv /home/build/.venv + cd datamaps + /home/build/.venv/bin/pip install -e . + /home/build/.venv/bin/pip install pytest + /home/build/.venv/bin/pytest -q |