Merge branch 'main' of gitlab.sectorq.eu:jaydee/portainer

This commit is contained in:
2025-12-02 20:00:27 +01:00

View File

@@ -1,7 +1,20 @@
stages: # List of stages for jobs, and their order of execution stages: # List of stages for jobs, and their order of execution
- lint
- build - build
- clean - clean
lint:
stage: lint
image: python:3.12
before_script:
- python3 -m pip install --user flake8 black pylint
- export PATH="$PATH:/home/gitlab-runner/.local/bin"
# - echo "PATH is now: $PATH"
script:
- flake8 .
- black --check .
- pylint portainer.py
build-job: # This job runs in the build stage, which runs first. build-job: # This job runs in the build stage, which runs first.
stage: build stage: build
script: script: