chore: minor fixies and docker setup with postgres (#69) #270
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
| # GitHub Action for Lumen with MySQL and Redis | |
| name: Testing Lumen with MySQL | |
| on: [push] | |
| jobs: | |
| lumen: | |
| name: Laravel (PHP ${{ matrix.php-versions }}) | |
| runs-on: ubuntu-latest | |
| env: | |
| DB_DATABASE: dev_he4rtbot | |
| DB_USERNAME: root | |
| DB_PASSWORD: root | |
| DB_TEST_DATABASE: dev_he4rtbot | |
| DB_TEST_USERNAME: root | |
| DB_TEST_PASSWORD: root | |
| BROADCAST_DRIVER: log | |
| CACHE_DRIVER: redis | |
| QUEUE_CONNECTION: redis | |
| SESSION_DRIVER: redis | |
| # Docs: https://docs.github.com/en/actions/using-containerized-services | |
| services: | |
| mysql: | |
| image: mysql:latest | |
| env: | |
| MYSQL_ALLOW_EMPTY_PASSWORD: false | |
| MYSQL_ROOT_PASSWORD: root | |
| MYSQL_DATABASE: dev_he4rtbot | |
| ports: | |
| - 3306/tcp | |
| options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
| 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: | |
| php-versions: ['8.3'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| # Docs: https://github.com/shivammathur/setup-php | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| extensions: mbstring, dom, fileinfo, mysql | |
| coverage: xdebug | |
| # 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 | |
| - 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 | |
| composer require predis/predis illuminate/redis | |
| - name: Prepare the application | |
| run: php -r "file_exists('.env') || copy('.env.pipeline', '.env');" | |
| - name: Register Redis as service provider | |
| run: sed -i '$i\$app->register(Illuminate\\Redis\\RedisServiceProvider::class);' bootstrap/app.php | |
| - name: Run Migration | |
| run: php artisan migrate --database=testing -v | |
| env: | |
| DB_HOST: '127.0.0.1' | |
| DB_TEST_DATABASE: 'dev_he4rtbot' | |
| DB_DATABASE: 'dev_he4rtbot' | |
| DB_PORT: ${{ job.services.mysql.ports['3306'] }} | |
| REDIS_PORT: ${{ job.services.redis.ports['6379'] }} | |
| - name: Test with phpunit | |
| run: vendor/bin/phpunit --coverage-text | |
| env: | |
| DB_HOST: '127.0.0.1' | |
| DB_TEST_DATABASE: 'dev_he4rtbot' | |
| DB_DATABASE: 'dev_he4rtbot' | |
| DB_PORT: ${{ job.services.mysql.ports['3306'] }} | |
| REDIS_PORT: ${{ job.services.redis.ports['6379'] }} |