hypercore-crypto/.drone.yml
Luke Murphy 53ce07f1c4
All checks were successful
continuous-integration/drone/push Build is passing
Try to install libsodium
2020-06-30 02:08:31 +02:00

26 lines
489 B
YAML

---
matrix:
include:
- IMAGE: 3.6-stretch
TOXENV: py36
- IMAGE: 3.7-stretch
TOXENV: py37
- IMAGE: 3.8-buster
TOXENV: py38
- IMAGE: 3.8-buster
TOXENV: lint
- IMAGE: 3.8-buster
TOXENV: sort
- IMAGE: 3.8-buster
TOXENV: format
- IMAGE: 3.8-buster
TOXENV: type
pipeline:
build:
image: python:${IMAGE}
commands:
- apt update && apt install -y libsodium-dev
- pip install tox
- tox -e ${TOXENV}