Skip to content

Fix type coercion, cross-section globals, .env export, Mapping ABC, C… #9

Fix type coercion, cross-section globals, .env export, Mapping ABC, C…

Fix type coercion, cross-section globals, .env export, Mapping ABC, C… #9

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0 # full history needed for hatch-vcs version inference
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dev dependencies
run: pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check src tests
- name: Type-check (mypy)
run: mypy src --ignore-missing-imports
- name: Run tests with coverage
run: pytest --tb=short --cov=refconf_manager --cov-report=term-missing