Skip to content

Commit da6271b

Browse files
committed
Merge branch 'release/v1.4.0'
2 parents cf35618 + 7b3e50e commit da6271b

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/test.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212

1313
env:
14-
latest_php: 8.3
14+
latest_php: 8.4
1515
latest_laravel: 11
1616

1717
strategy:
1818
fail-fast: false
1919
matrix:
2020
os: [ ubuntu-latest ]
21-
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
21+
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
2222
laravel: [ 6, 7, 8, 9, 10, 11 ]
2323
exclude:
2424
- php: 7.2
@@ -63,6 +63,16 @@ jobs:
6363
laravel: 7
6464
- php: 8.3
6565
laravel: 8
66+
- php: 8.4
67+
laravel: 6
68+
- php: 8.4
69+
laravel: 7
70+
- php: 8.4
71+
laravel: 8
72+
- php: 8.4
73+
laravel: 9
74+
- php: 8.4
75+
laravel: 10
6676

6777
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
6878

tests/AwsSessionTokenServiceProviderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected function resolveApplicationConfiguration($app): void
3939
$_SERVER['AWS_SESSION_TOKEN'] = 'dummy-session-token';
4040
}
4141

42-
public function testRegister(): void
42+
public function test_register(): void
4343
{
4444
self::assertSame('dummy-session-token', config('services.ses.token'));
4545
}

0 commit comments

Comments
 (0)