Skip to content

Remove openclassrooms/cache deps #1

Remove openclassrooms/cache deps

Remove openclassrooms/cache deps #1

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
tests:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: phpstan
coverage: none
- name: Run Phpunit
run: ./vendor/bin/phpunit
- name: Run PHPStan
run: phpstan analyse src