Skip to content

Commit

Permalink
Don't use prefer dist in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Mar 12, 2024
1 parent 4edaae7 commit f266cd4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@ jobs:
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}
extensions: mbstring, json, sqlite3
extensions: mbstring, json
tools: composer:v2
- name: Lock Package Versions
run: |
composer require "laravel/framework:${{ matrix.laravel }}.*" --no-update -v
- name: Composer Install
run: composer install --prefer-dist --no-progress --no-interaction
- name: Create Database
run: mkdir -p database && touch database/database.sqlite
run: composer install --no-progress --no-interaction
- name: Run Tests
run: php vendor/bin/phpunit --testdox

0 comments on commit f266cd4

Please sign in to comment.