Skip to content

Commit f520bc8

Browse files
committed
CI: php8.2
1 parent c02a481 commit f520bc8

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,20 @@ jobs:
1010
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
1111
strategy:
1212
matrix:
13-
php: ['8.0', '8.1']
13+
php: ['8.0', '8.1', '8.2']
1414
laravel: ['8', '9']
15+
exclude:
16+
- php: '8.2'
17+
laravel: '8'
1518
steps:
16-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
1720
- name: Setup PHP
1821
uses: shivammathur/setup-php@v2
1922
with:
2023
php-version: ${{ matrix.php }}
24+
ini-values: error_reporting=E_ALL
2125
tools: phpunit, git
2226

23-
- name: Get composer cache directory
24-
id: composer-cache
25-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
26-
27-
- name: Cache composer dependencies
28-
uses: actions/cache@v1
29-
with:
30-
path: ${{ steps.composer-cache.outputs.dir }}
31-
key: "php-${{ matrix.php }}-${{matrix.laravel}}-composer-locked-${{ hashFiles('composer.lock') }}"
32-
restore-keys: "php-${{ matrix.php }}-${{matrix.laravel}}-composer-locked-"
33-
3427
- name: Install Composer dependencies
3528
run: rm -f composer.lock
3629

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
php-version:
1515
- "8.0"
1616
- "8.1"
17+
- "8.2"
1718

1819
steps:
1920
- name: "Checkout code"

0 commit comments

Comments
 (0)