Skip to content

GH-1: Fix Python version to 3.10 #5

GH-1: Fix Python version to 3.10

GH-1: Fix Python version to 3.10 #5

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.10
- name: Install dependencies
run: pip install .[dev]
- name: Install browsers
run: playwright install --with-deps chromium
- name: Run tests
run: pytest