Skip to content

Ensure correct tab is selected when set on initialization (#41) #33

Ensure correct tab is selected when set on initialization (#41)

Ensure correct tab is selected when set on initialization (#41) #33

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [opened, synchronize]
push:
branches: [main]
jobs:
pr_checks:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade uv
uv venv
uv pip install -e .[dev,tests]
- name: Run pre-commit
uses: pre-commit/[email protected]
- name: Run pytest
run: |
source .venv/bin/activate
pytest tests