microsoft/markitdown

2 workflows · maturity 0% · 0 patterns · GitHub ↗

Security 0/100

Practices

○ Matrix○ Permissions○ Security scan○ AI review○ Cache○ Concurrency○ Reusable workflows

Security dimensions

permissions
0
security scan
0
supply chain
0
secret handling
0
harden runner
0

Workflows (2)

pre-commit .github/workflows/pre-commit.yml
Triggers
pull_request
Runs on
ubuntu-latest
Jobs
pre-commit
Commands
  • pip install pre-commit pre-commit install --install-hooks
  • pre-commit run --all-files
View raw YAML
name: pre-commit
on: [pull_request]

jobs:
  pre-commit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5
      - name: Set up Python
        uses: actions/setup-python@v5
        with:
          python-version: "3.x"

      - name: Install pre-commit
        run: |
          pip install pre-commit
          pre-commit install --install-hooks

      - name: Run pre-commit
        run: pre-commit run --all-files
tests .github/workflows/tests.yml
Triggers
pull_request
Runs on
ubuntu-latest
Jobs
tests
Commands
  • pipx install hatch
  • cd packages/markitdown; hatch test
View raw YAML
name: tests
on: [pull_request]

jobs:
  tests:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5
      - 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