Skip to content

Created CODE_OF_CONDUCT.md #14

Created CODE_OF_CONDUCT.md

Created CODE_OF_CONDUCT.md #14

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
permissions:
contents: read
jobs:
pytest:
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 tesseract
run: |
sudo apt update
sudo apt install -y tesseract-ocr
sudo apt install -y tesseract-ocr-rus
- name: Run pytest
run: pdm run ci-pytest