Skip to content

Merge pull request #20 from hexlet-components/dependabot/composer/ill… #49

Merge pull request #20 from hexlet-components/dependabot/composer/ill…

Merge pull request #20 from hexlet-components/dependabot/composer/ill… #49

Workflow file for this run

name: PHP CI
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
- name: PHP Security Checker
uses: StephaneBour/actions-php-security-checker@1.2
- name: Setup project
run: make setup
- name: Check lint
run: make lint
- name: Execute tests via PHPUnit
run: make test