markitdown/.github/workflows/tests.yml
2025-04-30 15:10:09 +12:00

21 lines
411 B
YAML

name: tests
on:
push:
branches: [dev]
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: |
3.10
3.11
3.12
- name: Install Hatch
run: pipx install hatch
- name: Run tests
run: cd packages/markitdown; hatch test