From 88c6d10c62be38c3e80d0e283ea6b66f73ca7522 Mon Sep 17 00:00:00 2001 From: roschaefer Date: Mon, 8 Jun 2020 16:45:21 +0200 Subject: [PATCH] Add new static code analysis workflow --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..809b665 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + name: Static code analysis + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + submodules: recursive + - name: Check translation files + run: | + Human-Connection/scripts/translations/sort.sh + Human-Connection/scripts/translations/missing-keys.sh