Skip to content

Update to deployer 7 #123

Update to deployer 7

Update to deployer 7 #123

Workflow file for this run

name: PHP tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
php-versions: ['8.0', '8.1', '8.2', '8.3']
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v4
# https://github.com/marketplace/actions/setup-php-action
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl
ini-values: post_max_size=256M, max_execution_time=180
tools: composer
- name: Check PHP version
run: php -v
- name: Install dependencies
run: composer install --prefer-dist
- name: Code lint PHP files
run: ./vendor/bin/phplint
- name: Coding standards
run: ./vendor/bin/phpcs