Refactor OLM OCR imports, remove duplicate Arcee loader, and update PaddlePaddle post-processing #1731
Workflow file for this run
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: On PR | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [ "main" ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pre-commit: | |
| uses: ./.github/workflows/pre-commit.yml | |
| secrets: inherit | |
| check-all-green: | |
| if: always() | |
| needs: | |
| - pre-commit | |
| runs-on: Ubuntu-latest | |
| steps: | |
| - name: Check if the needed jobs succeeded or failed | |
| uses: re-actors/alls-green@release/v1 | |
| with: | |
| jobs: ${{ toJSON(needs) }} |