Skip to content

1.0.0.dev3

1.0.0.dev3 #1

Workflow file for this run

name: CI
on:
push
env:
PLAYWRIGHT_BROWSERS_PATH: 0
jobs:
test:
name: Test
timeout-minutes: 30
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, 3.10.4]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
pip install -e .
python -m playwright install-deps
python -m playwright install
- name: Test with Pytest
run: pytest