Skip to content

Translations update from Hosted Weblate #769

Translations update from Hosted Weblate

Translations update from Hosted Weblate #769

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Pytesting
on:
push:
branches: [ main ]
paths:
- backend/**
pull_request:
branches: [ main ]
paths:
- backend/**
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install the project
run: uv sync --all-extras --dev
#- name: Lint with Ruff
# run: uv run ruff check
- name: Run tests
# For example, using `pytest`
run: uv run pytest --cov=./ --cov-report=term