- laravel 12 upgrade #17
  
    
      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: run-tests-postgres | |
| on: | |
| push: | |
| paths: | |
| - '**.php' | |
| - '.github/workflows/run-tests.yml' | |
| - 'phpunit.xml.dist' | |
| - 'composer.json' | |
| - 'composer.lock' | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 5 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ubuntu-latest] | |
| php: [ 8.4,8.3, 8.2 ] | |
| laravel: [ 12.*] | |
| stability: [prefer-lowest, prefer-stable] | |
| include: | |
| - laravel: 12.* | |
| testbench: 10.* | |
| carbon: ^3 | |
| name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} | |
| services: | |
| postgres: | |
| image: postgres:15 | |
| ports: | |
| - 5432 | |
| env: | |
| POSTGRES_USER: flymodel | |
| POSTGRES_PASSWORD: flymodel | |
| POSTGRES_DB: flymodel | |
| options: --health-cmd="pg_isready -U flymodel" --health-interval=10s --health-timeout=5s --health-retries=3 | |
| steps: | |
| - name: Verify PostgreSQL connection | |
| run: | | |
| psql --version | |
| sudo apt-get install -y postgresql-client | |
| PGPASSWORD=flymodel psql --host 127.0.0.1 --port ${{ job.services.postgres.ports['5432'] }} -U flymodel -d flymodel -c "\l" | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
| coverage: none | |
| - name: Setup problem matchers | |
| run: | | |
| echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
| echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
| - name: Install dependencies | |
| run: | | |
| composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.os == 'windows-latest' && '^^^' || '' }}${{ matrix.carbon }}" --no-interaction --no-update | |
| composer update --${{ matrix.stability }} --prefer-dist --no-interaction | |
| - name: List Installed Dependencies | |
| run: composer show -D | |
| - name: Execute tests for using postgress | |
| run: vendor/bin/pest --ci --configuration ./phpunit-postgress.xml.dist | |
| env: | |
| POSTGRES_USER: flymodel | |
| POSTGRES_PASSWORD: flymodel | |
| POSTGRES_DB: flymodel | |
| DB_USERNAME: flymodel | |
| DB_PASSWORD: flymodel | |
| DB_PORT: ${{ job.services.postgres.ports[5432] }} |