Skip to content

Commit

Permalink
Add PHP 8.2 to the CI (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Dec 11, 2022
1 parent 578c646 commit bf173c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ on:
jobs:
tests:
runs-on: "ubuntu-latest"
name: "Test ${{ matrix.php }}"
name: "Tests (PHP ${{ matrix.php }})"
strategy:
fail-fast: false
matrix:
php:
- "7.4"
- "8.0"
- "8.1"
- "8.2"

steps:
- name: "Check out repository code"
Expand All @@ -36,7 +37,7 @@ jobs:

symfony-version:
runs-on: "ubuntu-latest"
name: "Test ${{ matrix.config.php }} with Symfony ${{ matrix.config.symfony_version }}"
name: "Tests (PHP ${{ matrix.config.php }}) with Symfony ${{ matrix.config.symfony_version }}"
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -77,12 +78,12 @@ jobs:

infection:
runs-on: "ubuntu-latest"
name: "Infection ${{ matrix.php }}"
name: "Infection (PHP ${{ matrix.php }})"
strategy:
fail-fast: false
matrix:
php:
- "8.1"
- "8.2"

steps:
- name: "Check out repository code"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
name: Lint ${{ matrix.check.name }}
name: "${{ matrix.check.name }} (PHP ${{ matrix.check.php }})"
strategy:
fail-fast: false
matrix:
php: [ '8.1' ]
php: [ '8.2' ]
check:
- name: PHPStan
command: make phpstan
Expand Down

0 comments on commit bf173c8

Please sign in to comment.