17 lines
552 B
YAML
17 lines
552 B
YAML
steps:
|
|
check_ports_labels:
|
|
image: python:3.12
|
|
commands:
|
|
- pip3 install -r .ci/requirements.txt
|
|
- python3 .ci/port_attribution_watcher.py
|
|
- python3 .ci/traefik_label_watcher.py
|
|
lint:
|
|
image: debian:stable
|
|
commands:
|
|
- apt-get update
|
|
- apt-get install -y curl
|
|
- curl -SL https://github.com/docker/compose/releases/download/v2.20.3/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose
|
|
- chmod +x /usr/local/bin/docker-compose
|
|
- sh .ci/lint.sh
|
|
when:
|
|
- event: [push, pull_request]
|