Skip to content

chore: bump version to 2.5.0, document merge_violations in README #30

chore: bump version to 2.5.0, document merge_violations in README

chore: bump version to 2.5.0, document merge_violations in README #30

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]" 2>/dev/null || pip install -e .
- name: Run tests
run: pytest --tb=short 2>/dev/null || echo "No tests configured"
- name: Lint
run: ruff check . 2>/dev/null || echo "Linting skipped"