Refactor imports to use Support\Facades\Igniter for consistency. #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: API CI Pipeline | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
php-lint: | |
uses: tastyigniter/workflows/.github/workflows/php-lint.yml@main | |
with: | |
composer: update --no-interaction --no-progress | |
php-tests: | |
needs: php-lint | |
if: ${{ always() && needs.php-lint.result == 'success' }} | |
strategy: | |
matrix: | |
php: [ '8.2', '8.3' ] | |
uses: tastyigniter/workflows/.github/workflows/php-tests.yml@main | |
with: | |
php-version: ${{ matrix.target }} | |
composer: update --no-interaction --no-progress |