Skip to content

build(deps): bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 #69

build(deps): bump dependabot/fetch-metadata from 2.0.0 to 2.1.0

build(deps): bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 #69

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.10", 3.11]
php: [8.1, 8.2, 8.3]
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