Skip to content

ci: run tests on PHP 8.1 and 8.3 #83

ci: run tests on PHP 8.1 and 8.3

ci: run tests on PHP 8.1 and 8.3 #83

Workflow file for this run

name: CI
on: [pull_request]
jobs:
phpstan:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '8.1', '8.3' ]
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
args: --ignore-platform-reqs
- name: PHPStan Static Analysis
run: composer phpstan
php-cs-fixer:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '8.1', '8.3' ]
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
args: --ignore-platform-reqs
- name: PHP CS Fixer Static Analysis
run: composer php-cs-fixer
rector:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '8.1', '8.3' ]
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
args: --ignore-platform-reqs
- name: Rector
run: composer rector