Skip to content

Merge branch 'release/34-release-minor-version-0-2-0' into 'main' #2

Merge branch 'release/34-release-minor-version-0-2-0' into 'main'

Merge branch 'release/34-release-minor-version-0-2-0' into 'main' #2

name: Python Package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Important for hatch-vcs
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
pip install uv
- name: Install dependencies
run: |
uv pip install -e ".[dev]"
- name: Lint with ruff
run: |
ruff check .
ruff format --check .
- name: Type check with mypy
run: |
mypy entise
- name: Test with pytest
run: |
pytest --cov=entise tests/