Skip to content

Commit

Permalink
Add a CI job running with dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
stof committed Feb 6, 2024
1 parent 29f8114 commit 0395d04
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -35,8 +35,14 @@ jobs:
fail-fast: false
matrix:
php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
min_stability: ['']
name_suffix: ['']
include:
- php: '8.3'
min_stability: 'dev'
name_suffix: ' (dev deps)'

name: PHP ${{ matrix.php }}
name: PHP ${{ matrix.php }}${{ matrix.name_suffix }}

steps:
- name: Checkout code
Expand All @@ -49,6 +55,10 @@ jobs:
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On
coverage: xdebug

- name: Configure stability
if: "matrix.min_stability != ''"
run: composer config minimum-stability "${{ matrix.min_stability }}"

- name: Install Composer dependencies
run: composer install --ansi --no-interaction --no-progress

Expand Down

0 comments on commit 0395d04

Please sign in to comment.