File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 72
72
DB_PORT : ${{ job.services.mysql.ports[3306] }}
73
73
DB_USERNAME : root
74
74
DYNAMODB_CACHE_TABLE : laravel_dynamodb_test
75
+ DYNAMODB_ENDPOINT : " http://dynamodb-local:8000"
76
+ AWS_ACCESS_KEY_ID : random_key
77
+ AWS_SECRET_ACCESS_KEY : random_secret
75
78
76
79
windows_tests :
77
80
runs-on : windows-latest
Original file line number Diff line number Diff line change @@ -78,8 +78,8 @@ protected function getEnvironmentSetUp($app)
78
78
79
79
$ app ['config ' ]->set ('cache.stores.dynamodb ' , [
80
80
'driver ' => 'dynamodb ' ,
81
- 'key ' => env ('AWS_ACCESS_KEY_ID ' , ' random-key ' ),
82
- 'secret ' => env ('AWS_SECRET_ACCESS_KEY ' , ' random-secret ' ),
81
+ 'key ' => env ('AWS_ACCESS_KEY_ID ' ),
82
+ 'secret ' => env ('AWS_SECRET_ACCESS_KEY ' ),
83
83
'region ' => 'us-east-1 ' ,
84
84
'table ' => env ('DYNAMODB_CACHE_TABLE ' , 'laravel_test ' ),
85
85
'endpoint ' => env ('DYNAMODB_ENDPOINT ' ),
You can’t perform that action at this time.
0 commit comments