Chore(deps): bump the cdk group across 1 directory with 3 updates (#2… #2159
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |