Skip to content

Added tesseract installation to the test workflow. #11

Added tesseract installation to the test workflow.

Added tesseract installation to the test workflow. #11

Workflow file for this run

name: Run linter
on:
push:
branches:
- main
permissions:
contents: read
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
- name: Install dependencies
run: pdm install
- name: Install ruff
run: pip install ruff
- name: Run ruff linter
run: pdm run ci-ruff