From 28eff0c77e32a59ce2c90511f50d8c7fe98c5bbb Mon Sep 17 00:00:00 2001 From: Nate <37554478+servusdei2018@users.noreply.github.com> Date: Sun, 8 Aug 2021 15:16:31 -0400 Subject: ci(.github/workflows/ci.yml): run unicode lint under github actions --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 ############################################################### -- cgit v0.12