pyrogram/.github/workflows/python.yml

34 lines
689 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:
2022-04-24 12:50:00 +00:00
os: [ubuntu-latest, macos-latest]
2022-11-13 13:13:22 +00:00
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
2020-11-20 00:24:42 +00:00
steps:
2022-11-13 13:13:22 +00:00
- uses: actions/checkout@v3
2020-11-20 00:48:13 +00:00
- 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: |
2022-04-24 12:50:00 +00:00
make venv
make api
2020-11-20 00:48:13 +00:00
- name: Run tests
run: |
2022-04-24 12:50:00 +00:00
tox