Skip to content

feat: auto-commit from pyqual run 2026-04-02T21:50:12+02:00 #6

feat: auto-commit from pyqual run 2026-04-02T21:50:12+02:00

feat: auto-commit from pyqual run 2026-04-02T21:50:12+02:00 #6

Workflow file for this run

name: CI
on:
push:
branches: [main, master, develop]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e . || pip install -r requirements.txt || true
- name: Run tests
run: |
python -m pytest tests/ -v --tb=short
- name: Lint
run: |
pip install flake8 || true
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics || true