Skip to content

Commit

Permalink
Update coding-standards.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ragusa87 authored Dec 14, 2024
1 parent 2b3140d commit 0fca429
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@ on:
jobs:
coding-standards:
name: "Coding Standards"
runs-on: ubuntu-latest
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
php-version:
- "8.3"
- "8.4"
operating-system: [ubuntu-latest]

steps:
- name: "Checkout"
uses: "actions/checkout@v4"
Expand All @@ -21,7 +29,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
coverage: "xdebug"
php-version: "8.2"
php-version: "#{{ matrix.php-version }}"

- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v3"
Expand Down

0 comments on commit 0fca429

Please sign in to comment.