Skip to content

Commit 030de49

Browse files
committed
wip
1 parent a051c52 commit 030de49

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

.github/workflows/phpstan.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: PHPStan
33
on:
44
push:
55
paths:
6-
- '**.php'
7-
- 'phpstan.neon.dist'
8-
- '.github/workflows/phpstan.yml'
6+
- "**.php"
7+
- "phpstan.neon.dist"
8+
- ".github/workflows/phpstan.yml"
99

1010
jobs:
1111
phpstan:
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: '8.2'
21+
php-version: "8.2"
2222
coverage: none
2323

2424
- name: Install composer dependencies

.github/workflows/run-tests.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: run-tests
33
on:
44
push:
55
paths:
6-
- '**.php'
7-
- '.github/workflows/run-tests.yml'
8-
- 'phpunit.xml.dist'
9-
- 'composer.json'
10-
- 'composer.lock'
6+
- "**.php"
7+
- ".github/workflows/run-tests.yml"
8+
- "phpunit.xml.dist"
9+
- "composer.json"
10+
- "composer.lock"
1111

1212
jobs:
1313
test:
@@ -16,17 +16,13 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
os: [ubuntu-latest, windows-latest]
19+
os: [ubuntu-latest]
2020
php: [8.3, 8.2]
21-
laravel: [11.*, 10.*]
2221
stability: [prefer-lowest, prefer-stable]
2322
include:
2423
- laravel: 11.*
2524
testbench: 9.*
26-
carbon: ^2.63
27-
- laravel: 10.*
28-
testbench: 8.*
29-
carbon: ^2.63
25+
carbon: ^3.1.1
3026

3127
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3228

0 commit comments

Comments
 (0)