File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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
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'] }}
You can’t perform that action at this time.
0 commit comments