Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Nov 21, 2024
1 parent 0d67772 commit c334981
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,13 @@ jobs:
- name: Install redis-cli
run: sudo apt-get install -qq redis-tools

- name: Install dependencies
- name: Require cachewerk/relay
run: |
composer require cachewerk/relay --no-interaction --no-update
if: matrix.php != 8.4

- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction --no-progress --${{ matrix.stability }}
- name: Execute tests
Expand Down Expand Up @@ -118,9 +122,13 @@ jobs:
- name: Install redis-cli
run: sudo apt-get install -qq redis-tools

- name: Install dependencies
- name: Require cachewerk/relay
run: |
composer require cachewerk/relay --no-interaction --no-update
if: matrix.php != 8.4

- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction --no-progress --${{ matrix.stability }}
- name: Execute tests
Expand Down Expand Up @@ -175,11 +183,14 @@ jobs:
- name: Install redis-cli
run: sudo apt-get install -qq redis-tools

- name: Install dependencies
- name: Require cachewerk/relay
run: |
composer require "illuminate/contracts=^${{ matrix.laravel }}" --dev --no-update
composer require cachewerk/relay --no-interaction --no-update
composer update --prefer-dist --no-interaction --no-progress
if: matrix.php != 8.4

- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction --no-progress --${{ matrix.stability }} --with="illuminate/contracts=^${{ matrix.laravel }}"
- name: Execute tests
run: vendor/bin/pest -vvv
Expand Down Expand Up @@ -224,9 +235,13 @@ jobs:
- name: Install redis-cli
run: sudo apt-get install -qq redis-tools

- name: Install dependencies
- name: Require cachewerk/relay
run: |
composer require cachewerk/relay --no-interaction --no-update
if: matrix.php != 8.4

- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction --no-progress --${{ matrix.stability }}
- name: Execute tests
Expand Down

0 comments on commit c334981

Please sign in to comment.