Skip to content

Bump minimal PHP version and update packages #62

Bump minimal PHP version and update packages

Bump minimal PHP version and update packages #62

Workflow file for this run

name: Build
on:
- pull_request
- push
jobs:
tests:
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "8.2"
- "8.3"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
tools: "cs2pr"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v3"
- name: "Run PHP CS Fixer"
run: "./vendor/bin/php-cs-fixer fix --format checkstyle | cs2pr"
- name: "Run PHPUnit"
run: "vendor/bin/phpunit"