Skip to content

Relax the RegistryInitConfig type to allow Mapping #96

Relax the RegistryInitConfig type to allow Mapping

Relax the RegistryInitConfig type to allow Mapping #96

Workflow file for this run

name: "Unit Tests"
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
run:
name: "tests & coverage"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install Hatch
uses: pypa/hatch@install
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: hatch test --python ${{ matrix.python-version }} --cover-quiet --randomize --parallel --retries 5 --retry-delay 3