commit 4365cc8600c2913ebdd339c8cb5ff0b35cd608af Author: BryantHe Date: Tue Jun 14 16:10:00 2022 +0800 提交 drone 文件 diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e30e632 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,12 @@ +# drone 会自动先拉取代码 +# 再按顺序执行 pipeline 配置中定义的任务 + +# 这个配置定义了一个叫 run 的步骤 +# 代码拉取后会使用 python:3.7-alpine3.8 镜像来执行项目目录下的 a.py 文件 +# 由于现在仓库中并不存在 a.py 文件所以第次的测试肯定是失败的 + +pipeline: + run: + image: 3.9.13-alpine3.15 + commands: + - python3 a.py \ No newline at end of file