Skip to content

Merge pull request #16 from hexlet-components/dependabot/composer/squ… #43

Merge pull request #16 from hexlet-components/dependabot/composer/squ…

Merge pull request #16 from hexlet-components/dependabot/composer/squ… #43

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