summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5123f3c..dcae033 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -264,6 +264,7 @@ jobs:
# - valgrind
# - ubsan
# - asan
+# - unicode-lint
#
lz4-cppcheck:
name: make cppcheck
@@ -382,6 +383,15 @@ jobs:
- name: fuzzer
run: CC=clang MOREFLAGS=-fsanitize=address make V=1 -C tests clean test-fuzzer
+ unicode-lint:
+ name: lint unicode in ./lib/, ./tests/ and ./programs/
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2 # https://github.com/actions/checkout
+ - name: unicode lint
+ run: |
+ chmod +x ./tests/unicode_lint.sh
+ ./tests/unicode_lint.sh
###############################################################