Skip to content

Commit

Permalink
Fixed missing command
Browse files Browse the repository at this point in the history
  • Loading branch information
PavlosIsaris committed Oct 3, 2024
1 parent eecf30f commit db21d1d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/laravel-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:

jobs:
laravel-tests:

runs-on: ubuntu-latest

steps:
Expand All @@ -18,6 +17,8 @@ jobs:
- uses: actions/checkout@v4
- name: Copy .env
run: cp .env.testing.example .env.testing
- name: Update Composer Dependencies
run: composer update -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate key
Expand All @@ -35,7 +36,4 @@ jobs:
- name: Cache
run: php artisan config:cache --env=testing
- name: Execute tests (Unit and Feature tests) via PHPUnit/Pest
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: php artisan test
run: php artisan test

0 comments on commit db21d1d

Please sign in to comment.