Merge pull request #227 from mlocati/check-data-syntax-v2

Check syntax of data/special-requirements
pull/218/head
Michele Locati 2020-12-16 16:39:12 +01:00 committed by GitHub
commit 51d1b828a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -18,6 +18,12 @@ jobs:
exit 1
fi
rm data/supported-extensions.sorted
sort -o data/special-requirements.sorted data/special-requirements
if ! DIFF="$(diff -u data/special-requirements data/special-requirements.sorted)"; then
printf 'The order of extensions in data/special-requirements is wrong.\nThe list of required changes is:\n\n%s\n' "$DIFF" >&2
exit 1
fi
rm data/special-requirements.sorted
check_syntax_shell:
name: Check shell coding style
runs-on: ubuntu-latest

View File

@ -1,4 +1,4 @@
enchant !7.2-alpine3.12 !7.3-alpine3.12 !7.4-alpine3.12
parallel zts
pthreads zts
tdlib !alpine3.7 !jessie
enchant !7.2-alpine3.12 !7.3-alpine3.12 !7.4-alpine3.12