Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
norbybaru authored Aug 3, 2023
2 parents 3fc6532 + cd676b9 commit 48f1aae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ on:
paths:
- '**.php'
- 'phpstan.neon.dist'
pull_request:
paths:
- '**.php'
- 'phpstan.neon.dist'


jobs:
phpstan:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,5 @@ jobs:
run: vendor/bin/phpunit --testdox
env:
AWS_TIMESTREAM_KEY: ${{ secrets.AWS_TIMESTREAM_KEY }}
AWS_TIMESTREAM_SECRET: ${{ secrets.AWS_TIMESTREAM_SECRET }}
AWS_TIMESTREAM_SECRET: ${{ secrets.AWS_TIMESTREAM_SECRET }}
AWS_TIMESTREAM_DATABASE: laravel-aws-timestream
4 changes: 2 additions & 2 deletions tests/Fixtures/Traits/ConfigurableTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ public function getTimestreamConfig(): array
return [
'key' => env('AWS_TIMESTREAM_KEY'),
'secret' => env('AWS_TIMESTREAM_SECRET'),
'database' => 'test-db',
'database' => env('AWS_TIMESTREAM_DATABASE', 'laravel-aws-timestream'),
'tables' => [
'aliases' => [
'test' => 'default',
'test' => 'test',
],
],
];
Expand Down

0 comments on commit 48f1aae

Please sign in to comment.