summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorNate <37554478+servusdei2018@users.noreply.github.com>2021-08-08 19:16:31 (GMT)
committerGitHub <noreply@github.com>2021-08-08 19:16:31 (GMT)
commit28eff0c77e32a59ce2c90511f50d8c7fe98c5bbb (patch)
treea07724e14bd1b2a97175cb95f2edc95f7b100ec7 /.github/workflows
parent424e1d9622c557d7b94b55a31e9f91938b69d5e4 (diff)
downloadlz4-28eff0c77e32a59ce2c90511f50d8c7fe98c5bbb.zip
lz4-28eff0c77e32a59ce2c90511f50d8c7fe98c5bbb.tar.gz
lz4-28eff0c77e32a59ce2c90511f50d8c7fe98c5bbb.tar.bz2
ci(.github/workflows/ci.yml): run unicode lint under github actions
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
###############################################################