Skip to content

fix(debate): WATERMARK keyword parser anchored via fullmatch (turn-5 … #40

fix(debate): WATERMARK keyword parser anchored via fullmatch (turn-5 …

fix(debate): WATERMARK keyword parser anchored via fullmatch (turn-5 … #40

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
env:
PIP_DISABLE_PIP_VERSION_CHECK: "1"
QT_QPA_PLATFORM: offscreen
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Linux Qt runtime libs
run: |
sudo apt-get update
sudo apt-get install -y libegl1 libgl1 libopengl0 libxkbcommon-x11-0 libxcb-cursor0
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev,gui]" ruff
- name: Ruff
run: ruff check .
- name: Pytest
run: pytest -q