aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/encoding.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/encoding.yml b/.github/workflows/encoding.yml
new file mode 100644
index 000000000..b4f35ee66
--- /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"