Skip to content

Commit 8d6859d

Browse files
committed
fix: actions exclusions
1 parent 85275e2 commit 8d6859d

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ trim_trailing_whitespace = true
1313

1414
[*.md]
1515
trim_trailing_whitespace = false
16+
17+
[*.{yml,yaml}]
18+
indent_size = 2

.github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,18 @@ jobs:
1111
fail-fast: true
1212
matrix:
1313
os: [ubuntu-latest]
14-
php: [8.0, 8.1, 8.2, 8.3]
14+
php: ['8.0', 8.1, 8.2, 8.3]
1515
laravel: [9.*, 10.*, 11.*]
1616
dependency-version: [prefer-lowest, prefer-stable]
1717
exclude:
1818
- laravel: 9.*
19-
php: [8.1, 8.2, 8.3]
19+
php: 8.1
20+
- laravel: 9.*
21+
php: 8.2
22+
- laravel: 9.*
23+
php: 8.3
24+
- laravel: 11.*
25+
php: '8.0'
2026
- laravel: 11.*
2127
php: 8.1
2228

0 commit comments

Comments
 (0)