diff options
-rw-r--r-- | .github/workflows/encoding.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/encoding.yml b/.github/workflows/encoding.yml new file mode 100644 index 00000000..b4f35ee6 --- /dev/null +++ b/.github/workflows/encoding.yml @@ -0,0 +1,14 @@ +name: Build +on: + push: + +jobs: + check-loc-encoding: + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Check localization files encoding + run: | + files=$(ls Northstar.Client/mod/resource/*.txt) + IFS=$'\n'; files=($files); unset IFS; ! file --mime "${files[@]}" | grep -v "charset=utf-16le" |