This repository contains the default templates for GitHub for the CodeIgniter organization.
Each reusable workflow defines inputs under the workflow_call trigger.
If you don't specify your own inputs, the workflow will use the defined default values.
To customize inputs, you must define them under the with section in your workflow.
Basic Example:
jobs:
psalm:
uses: codeigniter4/.github/.github/workflows/psalm.yml@CI47
with:
php-version: '8.2'Advanced Example (Using Matrix Strategy)
jobs:
rector:
strategy:
fail-fast: false
matrix:
php-version: ['8.2', '8.4']
uses: codeigniter4/.github/.github/workflows/rector.yml@CI47
with:
php-version: ${{ matrix.php-version }}