File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,25 @@ name: CI
3
3
on : [push, pull_request]
4
4
5
5
jobs :
6
+ phplint :
7
+ runs-on : ubuntu-latest
8
+
9
+ name : PHP Linting (Pint)
10
+
11
+ steps :
12
+ - name : Checkout
13
+ uses : actions/checkout@v4
14
+
15
+ - name : " laravel-pint"
16
+ uses : aglipanci/laravel-pint-action@latest
17
+ with :
18
+ preset : laravel
19
+ verboseMode : true
20
+ testMode : true
21
+ configPath : " pint.json"
22
+ pintVersion : 1.18.2
23
+ onlyDirty : true
24
+
6
25
test :
7
26
runs-on : ubuntu-latest
8
27
strategy :
16
35
- laravel : 11.*
17
36
testbench : 9.*
18
37
19
- name : P ${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
38
+ name : PHP ${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
20
39
21
40
steps :
22
41
- name : Checkout
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ All notable changes to `laravel-notification-channels/twilio` will be documented
4
4
5
5
## 4.0.0
6
6
7
+ - Added PHP Linting (Pint) to CI workflow
8
+ - Additional tests to achieve 100% code coverage by @pascalbaljet
7
9
- Update PhpUnit to 10.5 and fixed all tests.
8
10
- Bump ` twilio/sdk ` to 8.3
9
11
- Improved types and use constructor property promotion everywhere.
You can’t perform that action at this time.
0 commit comments