check docker #17
This file contains 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: predict | |
on: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
# GitHub Actions run without a TTY device. This is a workaround to get one, | |
# based on https://github.com/actions/runner/issues/241#issuecomment-2019042651 | |
shell: 'script --return --quiet --log-out /dev/null --command "bash -e {0}"' | |
jobs: | |
inference: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Start container | |
uses: hoverkraft-tech/[email protected] | |
with: | |
compose-file: "./compose.yml" | |
- name: Run inference | |
run: | | |
docker exec -it ocr-pdf bash predict.sh | |
- name: Save predictions | |
id: commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: "-- *.pdf" | |
message: "enhanced pdfs" |