Skip to content

Chore(deps): bump python-multipart from 0.0.22 to 0.0.26 in /solution/mcp-server #2154

Chore(deps): bump python-multipart from 0.0.22 to 0.0.26 in /solution/mcp-server

Chore(deps): bump python-multipart from 0.0.22 to 0.0.26 in /solution/mcp-server #2154

name: Unit Test Text Extractor Code
on:
pull_request:
types: [ opened, synchronize, reopened ]
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
test-text-extractor:
runs-on: ubuntu-22.04
strategy:
fail-fast: true
steps:
# Checkout the code
- name: Checkout
uses: actions/checkout@v6
with:
submodules: true
# Build the text-extractor Docker image
- name: Build text-extractor Docker image
run: |
pushd solution
make text-extractor.build
popd
# Run the unit tests in the Docker container
- name: Run unit tests in Docker container
run: |
pushd solution
make text-extractor.test
popd