This commit is contained in:
Loic Guegan 2022-06-09 21:52:53 +02:00
parent c2e6aad09f
commit 03eab9f6b3

15
.gitlab-ci.yml Normal file
View file

@ -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