26 lines
525 B
YAML
26 lines
525 B
YAML
pipeline:
|
|
test:
|
|
# Alpine version doesn't have make
|
|
image: python:3.8
|
|
pull: true
|
|
commands:
|
|
- make test
|
|
when:
|
|
event: push
|
|
|
|
lint:
|
|
image: python:3.8
|
|
commands:
|
|
- make lint
|
|
when:
|
|
event: push
|
|
|
|
publish-dev:
|
|
image: plugins/docker
|
|
repo: chewingbever/jos
|
|
tag: [ dev ]
|
|
secrets: [ docker_username, docker_password ]
|
|
when:
|
|
branch: develop
|
|
event: push
|