Skip to content

Commit 605b03a

Browse files
committed
chore: fix github test config
1 parent 4026c8a commit 605b03a

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 8 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
concurrency:
1313
group: ${{ github.workflow }}-${{ github.ref }}
@@ -22,13 +22,11 @@ jobs:
2222
matrix:
2323
os: [ubuntu-latest, windows-latest]
2424
php: [8.4]
25-
laravel: [12.*, 11.*]
25+
laravel: [12.*]
2626
stability: [prefer-lowest, prefer-stable]
2727
include:
2828
- laravel: 12.*
2929
testbench: 10.*
30-
- laravel: 11.*
31-
testbench: 9.*
3230

3331
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3432

@@ -56,5 +54,8 @@ jobs:
5654
- name: List Installed Dependencies
5755
run: composer show -D
5856

57+
- name: Build Workbench
58+
run: composer build
59+
5960
- name: Execute tests
6061
run: vendor/bin/pest --ci

0 commit comments

Comments
 (0)