Skip to content

Commit 6f7b740

Browse files
authored
ci: add PHP 8.2 to the matrix (#74)
1 parent d60988f commit 6f7b740

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/coding-style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: "installing PHP"
1616
uses: "shivammathur/setup-php@v2"
1717
with:
18-
php-version: "8.0"
18+
php-version: "8.1"
1919

2020
- name: "installing php-cs-fixer"
21-
run: "wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.0.0/php-cs-fixer.phar"
21+
run: "wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.14.4/php-cs-fixer.phar"
2222

2323
- name: "running php-cs-fixer"
2424
run: "php php-cs-fixer.phar fix --dry-run --diff --no-ansi"

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: "installing PHP"
1616
uses: "shivammathur/setup-php@v2"
1717
with:
18-
php-version: "8.1"
18+
php-version: "8.2"
1919
ini-values: memory_limit=-1
2020
tools: composer:v2, phpstan, cs2pr
2121

@@ -24,8 +24,8 @@ jobs:
2424
env:
2525
COMPOSER_ROOT_VERSION: 'dev-main'
2626

27-
- name: "installing phpunit"
27+
- name: "installing PHPUnit"
2828
run: "php vendor/bin/simple-phpunit install"
2929

30-
- name: "running static analysis ( phpstan )"
30+
- name: "running static analysis (PHPStan)"
3131
run: "phpstan analyse"

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
- "7.4"
2525
- "8.0"
2626
- "8.1"
27+
- "8.2"
2728
operating-system:
2829
- "ubuntu-latest"
2930

@@ -59,7 +60,7 @@ jobs:
5960
if: ${{ matrix.dependencies == 'highest' }}
6061
run: "composer update --no-interaction --no-progress"
6162

62-
- name: "installing phpunit"
63+
- name: "installing PHPUnit"
6364
run: "php vendor/bin/simple-phpunit install"
6465

6566
- name: "running unit tests"

0 commit comments

Comments
 (0)