Skip to content

[1.x] Supports laravel/prompts v0.2 (#249) #393

[1.x] Supports laravel/prompts v0.2 (#249)

[1.x] Supports laravel/prompts v0.2 (#249) #393

Workflow file for this run

name: spec tests
on:
push:
branches:
- main
- '*.x'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]
laravel: [10, 11]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Install dependencies
run: |
composer require "illuminate/contracts=^${{ matrix.laravel }}" --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Pull Autobahn Docker image
run: docker pull crossbario/autobahn-testsuite
- name: Start WebSocket server
working-directory: tests/Specification
run: php spec-server.php &
- name: Run specification tests
working-directory: tests/Specification
run: |
docker run --rm \
-v $PWD:/mnt/autobahn \
-v $PWD/reports:/mnt/autobahn/reports \
--add-host host.docker.internal:host-gateway \
crossbario/autobahn-testsuite \
wstest -m fuzzingclient -s /mnt/autobahn/client-spec.json
- name: Analyze test results
working-directory: tests/Specification
run: php spec-analyze.php