esds/.gitlab-ci.yml
Loic Guegan 03eab9f6b3 Add CI
2022-06-09 21:52:53 +02:00

15 lines
339 B
YAML

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