Skip to content

Commit 9a110a0

Browse files
author
Itamar Junior
committed
Add step to install Laravel in GitHub Actions workflow for package testing
1 parent 4a4d948 commit 9a110a0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/laravel-package-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ jobs:
2626
extensions: dom, curl, libxml, mbstring, zip, sqlite3, pdo_sqlite
2727
coverage: none
2828

29+
# Step 2: Install Laravel
30+
- name: Install Laravel
31+
run: |
32+
composer global require laravel/installer
33+
export PATH="$HOME/.config/composer/vendor/bin:$PATH"
34+
laravel new laravel-appointments
35+
2936
# Step 3: Install Composer dependencies
3037
- name: Install dependencies
3138
run: |

0 commit comments

Comments
 (0)