File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -43,14 +43,14 @@ jobs:
43
43
options : --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
44
44
45
45
steps :
46
- - name : Checkout 🛎
46
+ - name : Checkout
47
47
uses : actions/checkout@v4
48
48
49
49
- name : Verify Opensearch connection
50
50
run : |
51
51
curl -X GET "localhost:${{ job.services.opensearch.ports['9200'] }}/_cluster/health?pretty=true"
52
52
53
- - name : Setup PHP 🏗
53
+ - name : Setup PHP
54
54
uses : shivammathur/setup-php@v2
55
55
with :
56
56
php-version : 8.2
68
68
- name : Run tests
69
69
run : |
70
70
./vendor/bin/pest --version
71
- ./vendor/bin/pest --no-cache
71
+ mkdir -p ./.pest/cache
72
+ ./vendor/bin/pest --cache-directory=./.pest/cache
72
73
env :
73
74
REDIS_PORT : ${{ job.services.redis.ports['6379'] }}
74
75
OPENSEARCH_PORT : ${{ job.services.opensearch.ports['9200'] }}
You can’t perform that action at this time.
0 commit comments