Skip to content

docs: update developer documentation for translation processing #3

docs: update developer documentation for translation processing

docs: update developer documentation for translation processing #3

Workflow file for this run

name: check
on:
push:
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Set up Python
uses: actions/setup-python@v5.3.0
with:
python-version: '3.12'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: poetry install --extras cpu
- name: Run pre-commit hooks
run: poetry run pre-commit run --all-files
- name: Run tests with coverage
run: |
poetry run coverage run -m pytest
poetry run coverage report --fail-under=90