Skip to content

Chore(deps): bump the cdk group across 1 directory with 3 updates (#2… #2159

Chore(deps): bump the cdk group across 1 directory with 3 updates (#2…

Chore(deps): bump the cdk group across 1 directory with 3 updates (#2… #2159

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