Skip to content

chore: add LICENSE and prepare for PyPI release #4

chore: add LICENSE and prepare for PyPI release

chore: add LICENSE and prepare for PyPI release #4

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e ".[dev]"
- run: pytest --cov=src/contextify
- run: ruff check src/