Skip to content

Merge pull request #57 from hexlet-components/dependabot/composer/php… #106

Merge pull request #57 from hexlet-components/dependabot/composer/php…

Merge pull request #57 from hexlet-components/dependabot/composer/php… #106

Workflow file for this run

name: PHP CI
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.4', '8.5']
steps:
- uses: actions/checkout@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Setup project
run: make setup
- name: Check lint
run: make lint
- name: Execute tests via PHPUnit
run: make test