15 lines
312 B
YAML
15 lines
312 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: docker:dind
|
|
privileged: true
|
|
commands:
|
|
- docker build -t post_bot .
|
|
- name: test
|
|
image: python:3.11-slim
|
|
commands:
|
|
- pip install --no-cache-dir python-telegram-bot sqlalchemy python-dotenv pytest
|
|
- pytest tests/
|