pyrogram/.github/workflows/python.yml

34 lines
697 B
YAML
Raw Normal View History

2020-11-20 00:24:42 +00:00
name: Pyrogram
2021-05-11 08:18:30 +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:
os: [ ubuntu-latest, macos-latest, windows-latest ]
2020-11-20 00:48:13 +00:00
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
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