2025-01-27 06:52:07 -08:00
|
|
|
when:
|
|
|
|
event: [ push, pull_request ]
|
|
|
|
|
2023-07-06 06:39:13 -07:00
|
|
|
steps:
|
|
|
|
unit_tests:
|
|
|
|
image: "python:${TAG}"
|
|
|
|
commands:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install -y python3 python3-pip cython3 gpg
|
2024-12-28 15:50:53 -08:00
|
|
|
- pip3 install emoji aiohttp cryptography setuptools
|
2023-07-06 06:39:13 -07:00
|
|
|
- ./run_tests.py
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
TAG:
|
|
|
|
- "3.9"
|
|
|
|
- "3.10"
|
|
|
|
- "3.11"
|
|
|
|
- "3.12"
|
2024-12-28 15:50:53 -08:00
|
|
|
- "3.13"
|