Overhaul #35
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: Docker Compose test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags-ignore: | |
| - '**' | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| build: | |
| name: Build and Run Docker Compose | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup PHP with Composer and extensions | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| extensions: dom, curl, libxml, mbstring, zip | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Get Composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache PHP dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: "${{ runner.os }}-composer" | |
| restore-keys: "${{ runner.os }}-composer-" | |
| - name: Create app directory | |
| run: mkdir -p /var/www | |
| - name: Install a fresh Laravel app | |
| run: sudo composer create-project laravel/laravel app | |
| working-directory: /var/www | |
| - name: Install Laravel Octane | |
| run: sudo script -e -c "composer require --no-interaction laravel/octane laravel/horizon" | |
| working-directory: /var/www/app | |
| - name: Install Laravel Reverb | |
| run: sudo script -e -c "php artisan install:broadcasting --reverb --no-interaction --force" | |
| working-directory: /var/www/app | |
| - name: Copy required content | |
| run: sudo cp -R FrankenPHP.Dockerfile compose.production.yaml Makefile .env.production .dockerignore deployment/ /var/www/app/ | |
| - name: Prepare the environment | |
| run: sudo mkdir -p storage/framework/{sessions,views,cache,testing} storage/logs && sudo chmod -R a+rw storage | |
| working-directory: /var/www/app | |
| - name: Run the Docker Compose | |
| run: sudo make down:with-volumes && sudo make build && sudo make up | |
| working-directory: /var/www/app | |
| - name: Wait for the container | |
| run: sleep 60s | |
| - name: Print the container logs | |
| run: sudo docker ps -a && docker logs app-app-1 | |
| - name: Check application health | |
| run: curl -f -s -o /dev/null -w "%{http_code}" --insecure https://localhost/up |