This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-05-18 09:04:41 +02:00
|
|
|
pipeline:
|
|
|
|
test:
|
|
|
|
# Alpine version doesn't have make
|
2021-05-18 12:17:28 +02:00
|
|
|
image: python:3.8
|
2021-05-18 09:04:41 +02:00
|
|
|
pull: true
|
|
|
|
commands:
|
|
|
|
- make test
|
2021-05-18 12:36:07 +02:00
|
|
|
when:
|
|
|
|
event: push
|
2021-05-18 09:04:41 +02:00
|
|
|
|
|
|
|
lint:
|
2021-05-18 12:17:28 +02:00
|
|
|
image: python:3.8
|
2021-05-18 09:04:41 +02:00
|
|
|
commands:
|
|
|
|
- make lint
|
2021-05-18 12:36:07 +02:00
|
|
|
when:
|
|
|
|
event: push
|
2021-05-18 12:24:10 +02:00
|
|
|
|
|
|
|
publish-dev:
|
|
|
|
image: plugins/docker
|
|
|
|
repo: chewingbever/jos
|
|
|
|
tag: [ dev ]
|
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
when:
|
|
|
|
branch: develop
|
|
|
|
event: push
|