Skip to content

fix(network): enable darwin mdns lifecycle #140

fix(network): enable darwin mdns lifecycle

fix(network): enable darwin mdns lifecycle #140

Workflow file for this run

name: CI
on:
push:
branches: [1.x]
pull_request:
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: ['8.2', '8.3', '8.4', '8.5']
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Run PHPUnit
run: vendor/bin/phpunit
- name: Run PHPStan
if: matrix.php == '8.4'
run: vendor/bin/phpstan analyse src --memory-limit=512M