28 lines
524 B
YAML
28 lines
524 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: publish-python-drone-test
|
||
|
|
||
|
# Mise à jours lorsque la branche master est mise à jours
|
||
|
trigger:
|
||
|
branch:
|
||
|
- master
|
||
|
event:
|
||
|
- push
|
||
|
|
||
|
steps:
|
||
|
- name: testcode
|
||
|
image: python
|
||
|
commands:
|
||
|
- python tests.py
|
||
|
# Notify discord that a new build is available
|
||
|
- name: notify
|
||
|
image: appleboy/drone-discord
|
||
|
when:
|
||
|
status:
|
||
|
- success
|
||
|
- failure
|
||
|
settings:
|
||
|
webhook_id:
|
||
|
from_secret: discord_id
|
||
|
webhook_token:
|
||
|
from_secret: discord_token
|