Skip to content

Commit

Permalink
Setup laravel
Browse files Browse the repository at this point in the history
  • Loading branch information
LouiseMcMahon committed Jan 28, 2025
1 parent fcfb95d commit 423dc93
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,20 @@ jobs:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}

- name: Install composer dependencies
uses: php-actions/composer@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php_extensions: zip pcntl mysqli pdo_mysql bcmath soap intl gd exif imagick redis xdebug
php_version: "8.3"
php-version: '8.3'
extensions: zip pcntl mysqli pdo_mysql bcmath soap intl gd exif imagick redis
coverage: xdebug

- name: Run composer install
run: composer install -n --prefer-dist

- name: Prepare Laravel Application
run: |
php artisan key:generate
php artisan typescript:transform
- name: Upload application
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 423dc93

Please sign in to comment.