pyrogram/.github/workflows/python.yml

35 lines
687 B
YAML
Raw Normal View History

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:
runs-on: ${{ matrix.os }}
2020-11-20 00:24:42 +00:00
strategy:
matrix:
2024-04-24 19:14:10 +00:00
os: [ubuntu-latest, macos-12]
2023-11-29 16:26:04 +00:00
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2020-11-20 00:24:42 +00:00
steps:
2024-01-30 15:14:04 +00:00
- uses: actions/checkout@v4
2020-11-20 00:48:13 +00:00
- name: Set up Python ${{ matrix.python-version }}
2024-01-30 15:14:04 +00:00
uses: actions/setup-python@v5
2020-11-20 00:48:13 +00:00
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Generate API
run: |
2022-04-24 12:50:00 +00:00
make venv
make api
2020-11-20 00:48:13 +00:00
- name: Run tests
run: |
2023-11-29 16:26:04 +00:00
tox