Skip to content

tests: add test for wrapping differences compared to gettext #930

tests: add test for wrapping differences compared to gettext

tests: add test for wrapping differences compared to gettext #930

Workflow file for this run

name: Pre-commit check
on:
push:
branches-ignore:
- dependabot/**
- deepsource**
pull_request:
permissions:
contents: read
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
cache-dependency-path: requirements/*.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements/lint.txt
- name: pre-commit
run: pre-commit run --all