From 2eb48d8ed07392054768a5c3217806f93e33089b Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Fri, 26 Jul 2019 23:56:16 +0300 Subject: [PATCH] Add SourceHut build file For now it only attempts to install the Python requirements using pipenv. Later it will run tests with pytest. --- .build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .build.yml diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..f9e95eb --- /dev/null +++ b/.build.yml @@ -0,0 +1,11 @@ +image: archlinux +packages: + - python-pipenv +sources: + - https://git.sr.ht/~alanorth/csv-metadata-quality +tasks: + - setup: | + pipenv install +environment: + PIPENV_NOSPIN: 'True' + PIPENV_HIDE_EMOJIS: 'True'