Skip to content

Commit

Permalink
wip README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
arthoine committed Jun 27, 2024
1 parent ea9ea4d commit 7de55df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
run: |
mkdir -p database
touch database/database.sqlite
echo "DB_CONNECTION=sqlite" >> .env
echo "DB_DATABASE=$(pwd)/database/database.sqlite" >> .env
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand All @@ -45,11 +47,11 @@ jobs:
env:
APP_ENV: testing
DB_CONNECTION: sqlite
DB_DATABASE: /home/runner/work/${{ github.repository }}/database/database.sqlite
DB_DATABASE=$(pwd)/database/database.sqlite

- name: Execute Tests (Unit and Feature tests) via PHPUnit/Pest
env:
APP_ENV: testing
DB_CONNECTION: sqlite
DB_DATABASE: /home/runner/work/${{ github.repository }}/database/database.sqlite
DB_DATABASE=$(pwd)/database/database.sqlite
run: php artisan test

0 comments on commit 7de55df

Please # to comment.