Skip to content

Add a section about web backends to the README #82

Add a section about web backends to the README

Add a section about web backends to the README #82

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
build:
name: tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
exclude:
# 3.5 and 3.6 no longer available on ubuntu-latest
- os: ubuntu-latest
python-version: "3.5"
- os: ubuntu-latest
python-version: "3.6"
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python v${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package and test dependencies
run: |
pip install -e .[tests]
- name: Run tests
run: |
py.test --cov=zipstream