Check order of extensions in data/supported-extensions

pull/211/head
Michele Locati 2020-12-10 11:58:16 +01:00
parent 10edaaf676
commit d4a16e18b4
No known key found for this signature in database
GPG Key ID: 98B7CE2E7234E28B
1 changed files with 17 additions and 0 deletions

View File

@ -4,6 +4,20 @@ on:
- pull_request - pull_request
jobs: jobs:
check_syntax_data:
name: Check data syntax
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check order supported extensions list
run: |
sort -o data/supported-extensions.sorted data/supported-extensions
if ! DIFF="$(diff -u data/supported-extensions data/supported-extensions.sorted)"; then
printf 'The order of extensions in data/supported-extensions is wrong.\nThe list of required changes is:\n\n%s\n' "$DIFF" >&2
exit 1
fi
rm data/supported-extensions.sorted
check_syntax_shell: check_syntax_shell:
name: Check shell coding style name: Check shell coding style
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -41,6 +55,7 @@ jobs:
run: composer run-script lint -- --dry-run --diff run: composer run-script lint -- --dry-run --diff
test_extensions: test_extensions:
needs: needs:
- check_syntax_data
- check_syntax_shell - check_syntax_shell
- check_syntax_php - check_syntax_php
strategy: strategy:
@ -67,6 +82,7 @@ jobs:
test_restoring_packages: test_restoring_packages:
name: Test restoring packages name: Test restoring packages
needs: needs:
- check_syntax_data
- check_syntax_shell - check_syntax_shell
- check_syntax_php - check_syntax_php
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -79,6 +95,7 @@ jobs:
test_custom_version: test_custom_version:
name: Test installing specific versions name: Test installing specific versions
needs: needs:
- check_syntax_data
- check_syntax_shell - check_syntax_shell
- check_syntax_php - check_syntax_php
runs-on: ubuntu-latest runs-on: ubuntu-latest