Skip to content

Refactor: Major modernization with Python 3.12, Strict Typing, and CI/CD Infrastructure #5

Refactor: Major modernization with Python 3.12, Strict Typing, and CI/CD Infrastructure

Refactor: Major modernization with Python 3.12, Strict Typing, and CI/CD Infrastructure #5

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
pip install pytest-cov ruff
- name: Lint with ruff
run: ruff check .
- name: Run Tests
run: pytest --cov=patterns --cov-report=xml