CI #1498
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - '0.x' | |
| - '1.x' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| testsuite-windows: | |
| runs-on: windows-2022 | |
| name: Windows - PHP 8.1 & SQL Server | |
| env: | |
| EXTENSIONS: mbstring, intl, pdo_sqlsrv | |
| PHP_VERSION: '8.1' | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Get date part for cache key | |
| id: key-date | |
| run: echo "date=$(Get-Date -Format 'yyyy-MM')" >> $env:GITHUB_OUTPUT | |
| - name: Setup PHP extensions cache | |
| id: php-ext-cache | |
| uses: shivammathur/cache-extensions@v1 | |
| with: | |
| php-version: ${{ env.PHP_VERSION }} | |
| extensions: ${{ env.EXTENSIONS }} | |
| key: ${{ steps.key-date.outputs.date }} | |
| - name: Cache PHP extensions | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.php-ext-cache.outputs.dir }} | |
| key: ${{ runner.os }}-php-ext-${{ steps.php-ext-cache.outputs.key }} | |
| restore-keys: ${{ runner.os }}-php-ext-${{ steps.php-ext-cache.outputs.key }} | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ env.PHP_VERSION }} | |
| extensions: ${{ env.EXTENSIONS }} | |
| ini-values: apc.enable_cli=1, extension=php_fileinfo.dll, zend.assertions=1, error_reporting=-1, display_errors=On | |
| coverage: pcov | |
| - name: Setup SQLServer | |
| run: | | |
| # MSSQLLocalDB is the default SQL LocalDB instance | |
| SqlLocalDB start MSSQLLocalDB | |
| SqlLocalDB info MSSQLLocalDB | |
| sqlcmd -S "(localdb)\MSSQLLocalDB" -Q "create database phinx;" | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $env:GITHUB_OUTPUT | |
| - name: Cache composer dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ steps.key-date.outputs.date }}-${{ hashFiles('composer.json') }}-${{ matrix.prefer-lowest }} | |
| - name: Composer install | |
| run: composer update | |
| - name: Run PHPUnit | |
| env: | |
| SQLSRV_DSN: 'sqlsrv://(localdb)\MSSQLLocalDB/phinx' | |
| CODECOVERAGE: 1 | |
| run: | | |
| vendor/bin/phpunit --coverage-clover=coverage.xml --filter 'testChangeColumnDefaultStringBoolean' | |
| - name: Submit code coverage | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| cs-stan: | |
| name: Coding Standard & Static Analysis | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| coverage: none | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Get date part for cache key | |
| id: key-date | |
| run: echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT | |
| - name: Cache composer dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ steps.key-date.outputs.date }}-${{ hashFiles('composer.json') }} | |
| - name: Composer install | |
| run: composer stan-setup | |
| - name: Run PHP CodeSniffer | |
| run: vendor/bin/phpcs | |
| - name: Run phpstan | |
| if: always() | |
| run: vendor/bin/phpstan.phar analyse --error-format=github |