Skip to content

Translated using Weblate (Hebrew) #2066

Translated using Weblate (Hebrew)

Translated using Weblate (Hebrew) #2066

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
linux:
name: Static linting
runs-on: ubuntu-latest
steps:
- name: Install prerequisites
run: sudo apt-get update && sudo apt-get install gettext
- name: Checkout
uses: actions/checkout@v3
- name: Lint
run: |
SHELLSCRIPT_ERROR=0
for file in $(git ls-files '*.po'); do
msgfmt "${file}" || SHELLSCRIPT_ERROR=1
done
exit "${SHELLSCRIPT_ERROR}"