Skip to content

Update schema-graphs.md (#41) #124

Update schema-graphs.md (#41)

Update schema-graphs.md (#41) #124

Workflow file for this run

name: Run Tests
on: [workflow_dispatch, push, pull_request]
env:
DB_ENDPOINT: 'tcp://127.0.0.1:8529'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
arangodb: [3.11, 3.12]
php: [8.2, 8.3, 8.4]
stability: [prefer-stable]
name: P${{ matrix.php }} - A${{ matrix.arangodb }} - ${{ matrix.stability }}
services:
arangodb:
image: arangodb:${{ matrix.arangodb }}
ports:
- 8529:8529
env:
ARANGO_NO_AUTH: 1
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, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: composer test