.drone.yml: build on Python 3.10 too
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Alan Orth 2022-07-02 11:44:48 +03:00
parent 27a3917c8b
commit 392b10fc9f
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,17 @@
---
kind: pipeline
type: docker
name: python310
steps:
- name: build
image: python:3.10-slim
commands:
- id
- python -V
- apt update && apt install -y gcc g++ libicu-dev pkg-config git
- pip install -r requirements-dev.txt
---
kind: pipeline
type: docker