blob: f494e16ea4f6cc08f8152f53e6cdbf13b4d0d172 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
archlinux:
image: "archlinux:latest"
before_script:
- pacman -Sy python python-pip python-numpy diffutils --noconfirm --needed
- pip install build
- pip install .
script:
- ./tests/run.sh
debian:
image: "debian:latest"
before_script:
- apt update && apt install -y python3 python3-pip python-is-python3
- pip install numpy
- pip install build
- pip install .
script:
- ./tests/run.sh
|