summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..e89beb3
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,15 @@
+archlinux:
+ image: "archlinux:latest"
+ before_script:
+ - pacman -Sy python python-numpy diffutils --noconfirm --needed
+ script:
+ - ./tests/run.sh
+
+debian:
+ image: "debian:latest"
+ before_script:
+ - apt update && apt install -y python3 python3-pip python-is-python3
+ - pip install numpy
+ script:
+ - ./tests/run.sh
+