Skip to content

Support the upcoming proxy API of Zyte API #50

Support the upcoming proxy API of Zyte API

Support the upcoming proxy API of Zyte API #50

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: 3.8
env:
TOXENV: min
- python-version: 3.8
env:
TOXENV: py
- python-version: 3.9
env:
TOXENV: py
- python-version: "3.10"
env:
TOXENV: py
- python-version: "3.11"
env:
TOXENV: py
- python-version: "3.11"
env:
TOXENV: security
- python-version: "3.11"
env:
TOXENV: docs
steps:
- 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 codecov
- name: Run tests
env: ${{ matrix.env }}
run: tox
- name: Upload coverage.xml to codecov
uses: codecov/codecov-action@v1