mirror of
https://github.com/qurator-spk/dinglehopper.git
synced 2025-07-01 14:40:00 +02:00
🚧 dinglehopper: Try out Drone CI
This commit is contained in:
parent
4a73053cfc
commit
985666a71c
1 changed files with 24 additions and 0 deletions
24
.drone.yml
Normal file
24
.drone.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
local Pipeline(name, image) = {
|
||||
kind: "pipeline",
|
||||
name: name,
|
||||
steps: [
|
||||
{
|
||||
name: "test",
|
||||
image: image,
|
||||
commands: [
|
||||
"pip install -U pip",
|
||||
"pip install -r requirements.txt",
|
||||
"pip install pytest",
|
||||
"pytest"
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
[
|
||||
Pipeline("python-3-5", "python:3.5"),
|
||||
Pipeline("python-3-6", "python:3.6"),
|
||||
Pipeline("python-3-7", "python:3.7"),
|
||||
Pipeline("python-3-8", "python:3.8"),
|
||||
Pipeline("python-3-9", "python:3.9"),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue