Merge pull request #9 from jolicode/up #26
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: Continuous Integration | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
name: Run the tests suite | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php-versions }}" | |
tools: jolicode/castor | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Install dependencies | |
run: castor install | |
- name: Install quality tools | |
run: castor qa:install | |
- name: Run PHPStan | |
run: castor qa:phpstan | |
- name: Run tests | |
run: castor qa:phpunit | |
cs: | |
name: Check PHP coding standards | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
tools: jolicode/castor | |
- name: Install dependencies | |
run: castor install | |
- name: Install quality tools | |
run: castor qa:install --only php-cs-fixer | |
- name: Check coding standards | |
run: castor qa:cs --dry-run |