Skip to content

Commit cb26a10

Browse files
committed
Update workflows
1 parent 656869d commit cb26a10

2 files changed

Lines changed: 10 additions & 14 deletions

File tree

.github/workflows/pint.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ name: Fix Styling
33
on: [push]
44

55
jobs:
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

.github/workflows/run-tests.yaml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: run-tests
1+
name: Run Tests
22

33
on: ['push', 'pull_request']
44

@@ -9,22 +9,18 @@ jobs:
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
@@ -44,4 +40,4 @@ jobs:
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

0 commit comments

Comments
 (0)