mirror of
https://github.com/danog/docker-php-extension-installer.git
synced 2024-11-30 04:29:15 +01:00
Check syntax of data/special-requirements
This commit is contained in:
parent
46ae7d7ec7
commit
61345cc169
6
.github/workflows/test-extensions.yml
vendored
6
.github/workflows/test-extensions.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user