Skip to content

Commit 50a5ca9

Browse files
committed
Merge branch 'master' of github.com:bpedroza/laravel-mail-assertions
2 parents d391348 + 48c60a9 commit 50a5ca9

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/run-tests.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,19 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- 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'
1621

1722
- name: Validate composer.json and composer.lock
1823
run: composer validate
1924

2025
- name: Cache Composer packages
2126
id: composer-cache
22-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2328
with:
2429
path: vendor
2530
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![Build Status](https://github.com/bpedroza/laravel-mail-assertions/actions/workflows/run-tests.yml/badge.svg)
2+
13
# Laravel Mail Assertions
24
Make assertions on emails in Laravel 6 - 11
35

0 commit comments

Comments
 (0)