mirror of
				https://github.com/shivammathur/setup-php.git
				synced 2025-10-31 23:36:21 +07:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # GitHub Action for Yii Framework with PostgreSQL
 | |
| name: Testing Yii2 with PostgreSQL
 | |
| on: [push, pull_request]
 | |
| jobs:
 | |
|   yii:
 | |
|     name: Yii2 (PHP ${{ matrix.php-versions }})
 | |
|     runs-on: ubuntu-latest
 | |
|     env:
 | |
|       DB_USERNAME: postgres
 | |
|       DB_PASSWORD: postgres
 | |
|       TEST_DB_USERNAME: postgres
 | |
|       TEST_DB_PASSWORD: postgres
 | |
|       DB_CHARSET: utf8
 | |
| 
 | |
|     # Docs: https://docs.github.com/en/actions/using-containerized-services
 | |
|     services:
 | |
|       postgres:
 | |
|         image: postgres:latest
 | |
|         env:
 | |
|           POSTGRES_USER: postgres
 | |
|           POSTGRES_PASSWORD: postgres
 | |
|           POSTGRES_DB: postgres
 | |
|         ports:
 | |
|           - 5432/tcp
 | |
|         options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         php-versions: ['7.4', '8.0']
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
| 
 | |
|       - name: Set Node.js 10.x
 | |
|         uses: actions/setup-node@v5
 | |
|         with:
 | |
|           node-version: 10.x
 | |
| 
 | |
|       # Docs: https://github.com/shivammathur/setup-php
 | |
|       - name: Setup PHP
 | |
|         uses: shivammathur/setup-php@v2
 | |
|         with:
 | |
|           php-version: ${{ matrix.php-versions }}
 | |
|           extensions: mbstring, intl, gd, imagick, zip, dom, pgsql
 | |
|           coverage: xdebug
 | |
| 
 | |
|       # Local PostgreSQL service in GitHub hosted environments is disabled by default.
 | |
|       # If you are using it instead of service containers, make sure you start it.
 | |
|       # - name: Start postgresql service
 | |
|       #   run: sudo systemctl start postgresql.service
 | |
| 
 | |
|       - name: Get composer cache directory
 | |
|         id: composer-cache
 | |
|         run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
 | |
| 
 | |
|       - name: Cache composer dependencies
 | |
|         uses: actions/cache@v3
 | |
|         with:
 | |
|           path: ${{ steps.composer-cache.outputs.dir }}
 | |
|           # Use composer.json for key, if composer.lock is not committed.
 | |
|           # key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
 | |
|           key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
 | |
|           restore-keys: ${{ runner.os }}-composer-
 | |
| 
 | |
|       - name: Install Composer dependencies
 | |
|         run: composer install --no-progress --prefer-dist --optimize-autoloader
 | |
| 
 | |
|       - name: Prepare the application
 | |
|         run: |
 | |
|           php -r "file_exists('.env') || copy('.env.dist', '.env');"
 | |
|           php console/yii app/setup
 | |
|           npm install --development
 | |
|           npm run build
 | |
|         env:
 | |
|           DB_DSN: pgsql:host=127.0.0.1;port=${{ job.services.postgres.ports['5432'] }};dbname=postgres
 | |
|           TEST_DB_DSN: pgsql:host=127.0.0.1;port=${{ job.services.postgres.ports['5432'] }};dbname=postgres
 | |
| 
 | |
|       - name: Run Tests
 | |
|         run: |
 | |
|           vendor/bin/codecept build
 | |
|           php tests/bin/yii app/setup --interactive=0
 | |
|           nohup php -S localhost:8080 > yii.log 2>&1 &
 | |
|           vendor/bin/codecept run
 | |
|         env:
 | |
|           DB_DSN: pgsql:host=127.0.0.1;port=${{ job.services.postgres.ports['5432'] }};dbname=postgres
 | |
|           TEST_DB_DSN: pgsql:host=127.0.0.1;port=${{ job.services.postgres.ports['5432'] }};dbname=postgres
 | 
