index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2023-06-14 08:26:15 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 00:26:15 +0200 |
commit | 92b0d0f8332f5006f9e242d33809cd2c7c2248ea (patch) | |
tree | 544b4d466cbf77140b7769fbead78a2e0872728d /.github | |
parent | c8bb8d7a0c056979d2a86cacf78f5cd82faf3817 (diff) |
-rw-r--r-- | .github/workflows/translation-check.yaml | 17 |
diff --git a/.github/workflows/translation-check.yaml b/.github/workflows/translation-check.yaml new file mode 100644 index 00000000..18a3b5fc --- /dev/null +++ b/.github/workflows/translation-check.yaml @@ -0,0 +1,17 @@ +on: + [ push, pull_request ]: + paths: + - 'archinstall/locales/**' +name: translation file checks +jobs: + translation-check: + runs-on: ubuntu-latest + container: + image: archlinux:latest + steps: + - uses: actions/checkout@v3 + - run: pacman --noconfirm -Syu python python-pip + - run: python -m pip install --upgrade pip + - run: cd archinstall/locales + - run: bash locales_generator.sh + - run: git diff --name-only |