Skip to content

fix(modules): read a Boot file's namespace instead of guessing it from the path #23

fix(modules): read a Boot file's namespace instead of guessing it from the path

fix(modules): read a Boot file's namespace instead of guessing it from the path #23

Workflow file for this run

name: CI
on:
push:
branches: [dev, main]
pull_request:
branches: [dev, main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
coverage: none
- name: Composer install
run: composer install --prefer-dist --no-interaction --no-progress
- name: Pint
run: vendor/bin/pint --test || true
- name: PHPStan
run: vendor/bin/phpstan analyse --no-progress || true
- name: Pest
run: vendor/bin/pest --no-coverage --no-interaction || true