Skip to content

Commit 97ef789

Browse files
committed
Test config debug
1 parent 80391b6 commit 97ef789

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/run-tests.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ jobs:
4343
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
4444

4545
steps:
46-
- name: Checkout 🛎
46+
- name: Checkout
4747
uses: actions/checkout@v4
4848

4949
- name: Verify Opensearch connection
5050
run: |
5151
curl -X GET "localhost:${{ job.services.opensearch.ports['9200'] }}/_cluster/health?pretty=true"
5252
53-
- name: Setup PHP 🏗
53+
- name: Setup PHP
5454
uses: shivammathur/setup-php@v2
5555
with:
5656
php-version: 8.2
@@ -68,7 +68,8 @@ jobs:
6868
- name: Run tests
6969
run: |
7070
./vendor/bin/pest --version
71-
./vendor/bin/pest --no-cache
71+
mkdir -p ./.pest/cache
72+
./vendor/bin/pest --cache-directory=./.pest/cache
7273
env:
7374
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
7475
OPENSEARCH_PORT: ${{ job.services.opensearch.ports['9200'] }}

0 commit comments

Comments
 (0)