2020-11-20 00:24:42 +00:00
|
|
|
name: Pyrogram
|
|
|
|
|
2021-10-11 12:31:00 +00:00
|
|
|
on: [push, pull_request]
|
2020-11-20 00:24:42 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
2020-11-20 01:07:29 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-11-20 00:24:42 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-11 12:31:00 +00:00
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2021-10-11 12:34:05 +00:00
|
|
|
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
|
2020-11-20 00:24:42 +00:00
|
|
|
|
|
|
|
steps:
|
2020-11-20 00:48:13 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install tox
|
|
|
|
|
|
|
|
- name: Generate API
|
|
|
|
run: |
|
|
|
|
python setup.py generate --api
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
2021-05-11 08:18:30 +00:00
|
|
|
tox
|