16 lines
276 B
YAML
16 lines
276 B
YAML
when:
|
|
event: [push, pull_request]
|
|
|
|
steps:
|
|
prepare:
|
|
image: bttoxin-digger:latest
|
|
commands:
|
|
- echo "Preparing environment..."
|
|
- BtToxin_Digger --version
|
|
|
|
test:
|
|
image: python:3.10
|
|
commands:
|
|
- pip install pytest httpx
|
|
- pytest tests/
|