Skip to content

Move to more appropriate namespace structure #5

Move to more appropriate namespace structure

Move to more appropriate namespace structure #5

Workflow file for this run

name: CI
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build-test-analyse:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.2', '8.3', '8.4']
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress
- name: Run unit tests
run: composer test
- name: Run code style checks
run: composer cs
- name: Run static analysis
run: composer stan