Skip to content

Commit

Permalink
update: use composer install not composer update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasonej committed Mar 8, 2024
1 parent 1f6f319 commit 5f8ff4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
coverage: none

- name: Install dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-suggest
run: composer install --prefer-dist --no-interaction --no-suggest

- name: Require specific versions of packages
run: composer update laravel/framework:^${{ matrix.laravel }} orchestra/testbench:^${{ matrix.testbench }} -W
run: composer install --${{ matrix.staibility }} laravel/framework:^${{ matrix.laravel }} orchestra/testbench:^${{ matrix.testbench }} -W

- name: Execute tests
run: vendor/bin/phpunit

0 comments on commit 5f8ff4f

Please sign in to comment.