Skip to content

Merge pull request #16 from hexlet-components/dependabot/github_actio… #9

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

Merge pull request #16 from hexlet-components/dependabot/github_actio… #9

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@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
- name: Setup project
run: make install
- name: Check lint
run: make lint
- name: Execute tests via PHPUnit
run: make test