Add "Yamben" to language extensive spec (#292) #227
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Specs | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [ opened, synchronize ] | |
branches: [ main ] | |
env: | |
PHP_VERSION: '8.3' | |
GH_TOKEN: ${{ github.token }} | |
COMPOSER_ROOT_VERSION: dev-main # see https://getcomposer.org/doc/articles/troubleshooting.md#dependencies-on-the-root-package | |
jobs: | |
specs-regenerate: | |
name: Regenerate specs | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
spec: | |
- "country" | |
- "currency" | |
- "eu" | |
- "http-methods" | |
- "http-status-codes" | |
- "language" | |
- "language-extensive" | |
- "language-subtag" | |
- "php-regex-script" | |
- "scripts" | |
- "tld" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ env.PHP_VERSION }} | |
coverage: none | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
- name: Update spec | |
run: composer run update-spec-${{ matrix.spec }} | |
- name: Check for changes | |
run: git diff --exit-code |