2019-10-10 17:47:17 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								# GitHub Action for Laravel with MySQL and Redis
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-04 19:34:05 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								name: Testing Laravel with MySQL
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								on: [push, pull_request]
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								jobs:
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-04 19:34:05 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  laravel:
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-08 18:12:54 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    name: Laravel (PHP ${{ matrix.php-versions }})
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    runs-on: ubuntu-latest
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-13 05:27:58 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    env:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      DB_DATABASE: laravel
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      DB_USERNAME: root
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      DB_PASSWORD: password
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      BROADCAST_DRIVER: log
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      CACHE_DRIVER: redis
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      QUEUE_CONNECTION: redis
							 | 
						
					
						
							
								
									
										
										
										
											2022-04-03 04:24:07 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      SESSION_DRIVER: redis
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    # Docs: https://docs.github.com/en/actions/using-containerized-services
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    services:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      mysql:
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        image: mysql:latest
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        env:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          MYSQL_ALLOW_EMPTY_PASSWORD: false
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          MYSQL_ROOT_PASSWORD: password
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          MYSQL_DATABASE: laravel
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        ports:
							 | 
						
					
						
							
								
									
										
										
										
											2020-01-08 11:35:32 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          - 3306/tcp
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      redis:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        image: redis
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        ports:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          - 6379/tcp
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    strategy:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      fail-fast: false
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      matrix:
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        php-versions: ['7.4', '8.0', '8.1']
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    steps:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      - name: Checkout
							 | 
						
					
						
							
								
									
										
										
										
											2025-10-12 11:05:16 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        uses: actions/checkout@v5
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      # Docs: https://github.com/shivammathur/setup-php
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      - name: Setup PHP
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        uses: shivammathur/setup-php@v2
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        with:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          php-version: ${{ matrix.php-versions }}
							 | 
						
					
						
							
								
									
										
										
										
											2019-12-09 10:52:43 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          extensions: mbstring, dom, fileinfo, mysql
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          coverage: xdebug
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2022-04-03 04:24:07 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      # Local MySQL 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 mysql service
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      #   run: sudo systemctl start mysql.service
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-11-27 06:00:34 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      - name: Get composer cache directory
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-12 18:26:26 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        id: composer-cache
							 | 
						
					
						
							
								
									
										
										
										
											2022-10-12 16:26:11 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-11-27 06:00:34 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      - name: Cache composer dependencies
							 | 
						
					
						
							
								
									
										
										
										
											2022-03-21 15:40:20 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        uses: actions/cache@v3
							 | 
						
					
						
							
								
									
										
										
										
											2019-11-27 06:00:34 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        with:
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-12 18:26:26 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          path: ${{ steps.composer-cache.outputs.dir }}
							 | 
						
					
						
							
								
									
										
										
										
											2019-12-28 00:23:51 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          # Use composer.json for key, if composer.lock is not committed.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          # key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
							 | 
						
					
						
							
								
									
										
										
										
											2019-11-27 06:00:34 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          restore-keys: ${{ runner.os }}-composer-
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      - name: Install Composer dependencies
							 | 
						
					
						
							
								
									
										
										
										
											2020-06-19 10:52:35 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        run: composer install --no-progress --prefer-dist --optimize-autoloader
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      - name: Prepare the application
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        run: |
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-08 18:12:54 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          php -r "file_exists('.env') || copy('.env.example', '.env');"
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          php artisan key:generate
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      - name: Clear Config
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-08 18:12:54 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        run: php artisan config:clear
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								      - name: Run Migration
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        run: php artisan migrate -v
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-08 18:12:54 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        env:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          DB_PORT: ${{ job.services.mysql.ports['3306'] }}
							 | 
						
					
						
							
								
									
										
										
										
											2020-01-08 11:35:32 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-08 18:12:54 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      - name: Test with phpunit
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        run: vendor/bin/phpunit --coverage-text
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-03 13:43:34 +03:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								        env:
							 | 
						
					
						
							
								
									
										
										
										
											2020-01-08 11:35:32 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          DB_PORT: ${{ job.services.mysql.ports['3306'] }}
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-15 16:49:10 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
							 |