Skip to content

chore: Ignore ISC001 to avoid formatter warning #399

chore: Ignore ISC001 to avoid formatter warning

chore: Ignore ISC001 to avoid formatter warning #399

Workflow file for this run

name: Translations
on:
pull_request: {}
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: "**/requirements*.txt"
- name: Install translate-toolkit
run: |
sudo apt update
sudo apt install gettext translate-toolkit
- run: pip install -r requirements.txt
- working-directory: backend
run: python manage.py makemessages -a
- name: Count incomplete translations
shell: bash
run: |
output=$(find . -name LC_MESSAGES -not -path "*/en_US/*" -exec pocount --incomplete --short "{}" +)
echo $output
[ "$output" = "" ]