diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ff495e5..020103a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,6 +12,16 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v3 + + - name: Set up PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.0.30' # Adjust the PHP version as needed + extensions: mbstring, intl, curl + tools: composer + + - name: Install Composer Dependencies + run: composer install --no-dev --optimize-autoloader - name: Deploy uses: easingthemes/ssh-deploy@v2.2.11