Skip to content

Add ObservableGauge metric type #14

Add ObservableGauge metric type

Add ObservableGauge metric type #14

Workflow file for this run

name: "Tests"
on:
pull_request:
push:
branches:
- main
jobs:
tests:
name: Tests (PHP ${{ matrix.php }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.2', '8.3', '8.4']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run tests
run: |
PHP_VERSION=${{ matrix.php }} docker compose run --rm tests sh -c "
git config --global --add safe.directory /app &&
composer update --no-interaction &&
composer test
"