From 03eab9f6b34e3469229c8135b7533f1328e3f4d2 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Thu, 9 Jun 2022 21:52:53 +0200 Subject: [PATCH] Add CI --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitlab-ci.yml 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 +