mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-05 08:06:25 +02:00
17 lines
410 B
YAML
17 lines
410 B
YAML
debian:
|
|
stage: test
|
|
image: debian:stable
|
|
before_script:
|
|
- apt-get -qq update && apt-get -qq install -y python python-pip
|
|
- pip install PyYAML
|
|
script:
|
|
- bash tests/run.sh break
|
|
|
|
archlinux:
|
|
stage: test
|
|
image: archlinux/base
|
|
before_script:
|
|
- pacman -Sy --noconfirm && pacman -S --noconfirm python python-pip diffutils
|
|
- pip install PyYAML
|
|
script:
|
|
- bash tests/run.sh break
|