Skip to content

Added check for ignore_active_span option when starting a span #55

Added check for ignore_active_span option when starting a span

Added check for ignore_active_span option when starting a span #55

Workflow file for this run

name: CI
on:
push:
branches:
- master
paths-ignore:
- "**/*.md"
- "LICENSE"
pull_request:
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ["7.4", "8.0", "8.1", "8.2"]
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, pdo, pdo_mysql, intl, zip
coverage: none
- name: Install dependencies
run: composer install
- name: Run coding style checking
run: composer lint
- name: Run tests
run: composer test