Skip to content

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

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

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

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: PHP Security Checker
uses: StephaneBour/[email protected]
- name: Setup project
run: make setup
- name: Check lint
run: make lint
- name: Execute tests via PHPUnit
run: make test