Skip to content

Bump soupsieve from 2.8.1 to 2.8.4 #210

Bump soupsieve from 2.8.1 to 2.8.4

Bump soupsieve from 2.8.1 to 2.8.4 #210

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: PyTest
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
types: [ opened, synchronize, reopened ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --locked --all-extras --dev
- run: uv run pytest
env:
QT_QPA_PLATFORM: "offscreen"