2021-10-19 05:14:31 +03:00
|
|
|
kind: pipeline
|
2021-10-19 05:42:01 +03:00
|
|
|
type: docker
|
2021-10-19 05:14:31 +03:00
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2021-10-19 05:26:08 +03:00
|
|
|
- name: build
|
2021-10-19 05:42:01 +03:00
|
|
|
image: python
|
2021-10-19 05:14:31 +03:00
|
|
|
commands:
|
2021-10-19 05:42:01 +03:00
|
|
|
- pip3 install --upgrade pip
|
|
|
|
- pip3 install -r requirements.txt
|
|
|
|
- bash test.sh
|
2021-10-19 05:26:08 +03:00
|
|
|
|
2021-10-19 05:14:31 +03:00
|
|
|
|