Skip to content

Commit aacd3f1

Browse files
committed
chore: Run migration in CI workflow
This commit adds a step to the continuous integration workflow to run the database migration using the `php artisan migrate` command. This ensures that the database schema is up to date and compatible with the latest code changes. Closes #123
1 parent c1f07df commit aacd3f1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
- name: Install dependencies
3333
run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader
3434

35+
- name: Run Migration
36+
run: php artisan migrate
37+
3538
- name: Run tests
3639
run: php artisan test
3740

0 commit comments

Comments
 (0)