kind: pipeline name: default type: docker pipeline: unittest: image: python group: test commands: - pip install -r requirements_test.txt - ./scripts/CI/setup.sh - ./scripts/CI/test.sh lint: image: python group: test commands: - pip install -r requirements_test.txt - ./scripts/CI/lint.sh settings: username: from_secret: gitea_username password: from_secret: gitea_password