Skip to content

Merge pull request #29 from mfriedy/dynamic-sidebar #98

Merge pull request #29 from mfriedy/dynamic-sidebar

Merge pull request #29 from mfriedy/dynamic-sidebar #98

Workflow file for this run

name: testing
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.2.1"
- name: Install dependencies
run: |
poetry install
python -m pip install tox tox-gh-actions pytest-playwright
- name: Install playwright dependencies
run: |
playwright install --with-deps
- name: Test with tox
run: tox