pythonasyncioeventletgeventlong-pollinglow-latencysocket-iosocketiosocketio-serverweb-serverwebsocket
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
name: build
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
lint:
|
|
name: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
- run: python -m pip install --upgrade pip wheel
|
|
- run: pip install tox tox-gh-actions
|
|
- run: tox -eflake8
|
|
- run: tox -edocs
|
|
tests:
|
|
name: tests
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
python: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.8']
|
|
exclude:
|
|
# pypy3 currently fails to run on Windows
|
|
- os: windows-latest
|
|
python: pypy-3.8
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
- run: python -m pip install --upgrade pip wheel
|
|
- run: pip install tox tox-gh-actions
|
|
- run: tox
|
|
coverage:
|
|
name: coverage
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
- run: python -m pip install --upgrade pip wheel
|
|
- run: pip install tox tox-gh-actions codecov
|
|
- run: tox
|
|
- run: codecov
|
|
|