Skip to content

Feat: add repository lock detection and validation #234

Feat: add repository lock detection and validation

Feat: add repository lock detection and validation #234

Workflow file for this run

name: Python Tests
on:
push:
branches:
- "main"
- "*release*"
pull_request:
branches:
- "main"
- "*release*"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Test with pytest
run: |
pytest src/tests/unit