加入.drone.yaml

This commit is contained in:
william 2024-09-18 14:02:26 +08:00
parent f35052ad49
commit db17a9d93e

16
.drone.yml Normal file
View File

@ -0,0 +1,16 @@
---
kind: pipeline
type: exec
name: default
platform:
os: linux
arch: amd64
steps:
- name: run
commands:
- pip install -r requirements.txt
- python ui.py
...