ci(.github/workflows/ci.yml): run unicode lint under github actions

This commit is contained in:
Nate 2021-08-08 15:16:31 -04:00 committed by GitHub
parent 424e1d9622
commit 28eff0c77e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
###############################################################