[id] Update missing language files #2729
This file contains hidden or 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: build | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| push: | |
| branches: | |
| - develop | |
| paths: | |
| - Language/** | |
| - tests/Language/** | |
| - .github/scripts/continuous-integration | |
| - .github/workflows/build.yml | |
| pull_request: | |
| branches: | |
| - develop | |
| paths: | |
| - Language/** | |
| - tests/Language/** | |
| - .github/scripts/continuous-integration | |
| - .github/workflows/build.yml | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| main: | |
| name: Build [PHP ${{ matrix.php-version }}] | |
| runs-on: ubuntu-24.04 | |
| if: github.repository == 'codeigniter4/translations' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: ['8.2', '8.3', '8.4', '8.5'] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 2 | |
| - name: Checkout other refs | |
| run: | | |
| git fetch --no-tags --prune --depth=2 origin +refs/heads/*:refs/remotes/origin/* | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| extensions: intl, mbstring | |
| coverage: xdebug | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache composer dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }} | |
| key: composer-PHP_${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }} | |
| restore-keys: composer-PHP_${{ matrix.php-version }}- | |
| - name: Install dependencies | |
| run: composer update --ansi | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Run Translations Test Suite | |
| run: | | |
| if [ "${{ github.event_name }}" = "pull_request" ]; then | |
| php .github/scripts/continuous-integration --pull-request | |
| else | |
| php .github/scripts/continuous-integration --push | |
| fi |