pruebas configuracion runner v3
Some checks failed
Simple CI Pipeline for PHP / build (push) Failing after 0s

This commit is contained in:
David Vargas 2024-09-05 14:22:52 -06:00
parent 688289b19e
commit d0a907fbbe

View File

@ -15,8 +15,12 @@ jobs:
- name: Checkout code
run: git clone ${{ secrets.REPO_URL }} .
- name: Set up PHP
run: sudo apt update && sudo apt install php-cli composer -y
- name: Set up PHP and Composer
run: |
apt-get update
apt-get install -y php-cli curl unzip
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
- name: Install Composer dependencies
run: composer install