File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,19 +3,19 @@ name: Fix Styling
33on : [push]
44
55jobs :
6- php-cs-fixer :
6+ lint :
77 runs-on : ubuntu-latest
88
99 steps :
1010 - name : Checkout code
11- uses : actions/checkout@v3
11+ uses : actions/checkout@v4
1212 with :
1313 ref : ${{ github.head_ref }}
1414
1515 - name : Fix styling issues
16- uses : aglipanci/laravel-pint-action@0.1.0
16+ uses : aglipanci/laravel-pint-action@latest
1717
1818 - name : Commit changes
19- uses : stefanzweifel/git-auto-commit-action@v4
19+ uses : stefanzweifel/git-auto-commit-action@v5
2020 with :
2121 commit_message : Fix styling
Original file line number Diff line number Diff line change 1- name : run-tests
1+ name : Run Tests
22
33on : ['push', 'pull_request']
44
99 fail-fast : true
1010 matrix :
1111 os : [ubuntu-latest]
12- php : [8.2 , 8.3 ]
13- laravel : [10.*, 11.*, 12.*]
12+ php : [8.3 , 8.4, 8.5 ]
13+ laravel : [12.*]
1414 stability : [prefer-lowest, prefer-stable]
1515 include :
16- - laravel : 10.*
17- testbench : 8.*
18- - laravel : 11.*
19- testbench : 9.*
2016 - laravel : 12.*
21- testbench : 10.*
17+ testbench : ^ 10.8
2218
2319 name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2420
2521 steps :
2622 - name : Checkout code
27- uses : actions/checkout@v4
23+ uses : actions/checkout@v5
2824
2925 - name : Setup PHP
3026 uses : shivammathur/setup-php@v2
4440 composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4541
4642 - name : Execute tests
47- run : vendor/bin/pest
43+ run : vendor/bin/pest --ci
You can’t perform that action at this time.
0 commit comments