From b9b4280a9f5b4661c4154e2ee3b4553f3321dae9 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Wed, 29 Apr 2020 15:38:05 +0200 Subject: [PATCH] Add locale validation workflow --- .github/workflows/validate-locales.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/validate-locales.yml diff --git a/.github/workflows/validate-locales.yml b/.github/workflows/validate-locales.yml new file mode 100644 index 00000000..54c6d862 --- /dev/null +++ b/.github/workflows/validate-locales.yml @@ -0,0 +1,24 @@ +name: Locale Validation + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + validate: + name: Locale Validation + runs-on: ubuntu-latest + + steps: + - name: Checkout code base + uses: actions/checkout@v2 + + - name: Setup dependencies + run: sudo apt-get -y install gettext + + - name: Validate locale files + run: cd ./locale/ && ../bin/validate