Skip to content

Commit 99621a8

Browse files
committed
Update action
1 parent 239b695 commit 99621a8

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/style.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Fix Code Styling
22

3-
on: [ push ]
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- '*.x'
48

59
jobs:
610
lint:
@@ -18,7 +22,7 @@ jobs:
1822
- name: Setup PHP
1923
uses: shivammathur/setup-php@v2
2024
with:
21-
php-version: "8.4"
25+
php-version: 8.4
2226
extensions: json, dom, curl, libxml, mbstring
2327
coverage: none
2428

.github/workflows/tests.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,10 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
php: [ 8.1, 8.2, 8.3, 8.4 ]
20+
php: [ 8.2, 8.3, 8.4 ]
2121
laravel: [ '10.*', '11.*', '12.*' ]
2222
dependency-version: [ prefer-lowest, prefer-stable ]
2323

24-
exclude:
25-
- laravel: 11.*
26-
php: 8.1
27-
- laravel: 12.*
28-
php: 8.1
29-
3024
name: P${{ matrix.php }} / L${{ matrix.laravel }} / ${{ matrix.dependency-version }}
3125

3226
steps:

0 commit comments

Comments
 (0)