Skip to content

fix: preserve hyperlink references in Word document merge #18

fix: preserve hyperlink references in Word document merge

fix: preserve hyperlink references in Word document merge #18

Workflow file for this run

name: Test
on:
push:
branches:
- "**"
paths:
- "**.py"
tags-ignore:
- "**"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
- name: Install dependencies
run: pdm install
- name: Test with pytest
run: |
pdm run pytest --doctest-modules --doctest-report udiff --doctest-continue-on-failure --tb=short