We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d391348 + 48c60a9 commit 50a5ca9Copy full SHA for 50a5ca9
.github/workflows/run-tests.yml
@@ -12,14 +12,19 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
16
+ - name: Setup PHP
17
+ id: setup-php
18
+ uses: shivammathur/setup-php@v2
19
+ with:
20
+ php-version: '8.3'
21
22
- name: Validate composer.json and composer.lock
23
run: composer validate
24
25
- name: Cache Composer packages
26
id: composer-cache
- uses: actions/cache@v2
27
+ uses: actions/cache@v4
28
with:
29
path: vendor
30
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
README.md
@@ -1,3 +1,5 @@
1
+
2
+
3
# Laravel Mail Assertions
4
Make assertions on emails in Laravel 6 - 11
5
0 commit comments