Skip to content

Create basic array/object functionality #1

Create basic array/object functionality

Create basic array/object functionality #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ main ]
jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- '8.2'
- '8.3'
minimum_versions: [false]
coverage: ['none']
include:
- description: 'Minimum version'
php: '8.2'
minimum_versions: true
- description: 'Log Code Coverage'
php: '8.2'
coverage: 'xdebug'
name: PHP ${{ matrix.php }} ${{ matrix.description }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/cache@v2
with:
path: ~/.composer/cache/files
key: ${{ matrix.php }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: ${{ matrix.coverage }}
- name: Install dependencies
run: composer install
if: matrix.minimum_versions == false
- name: Install dependencies lower
run: composer update --no-interaction --prefer-lowest
if: matrix.minimum_versions == true
- name: Run PHPUnit tests
run: vendor/bin/phpunit
if: matrix.coverage == 'none'
- name: PHPUnit tests and Log Code coverage
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml
if: matrix.coverage == 'xdebug'
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Run codecov
uses: codecov/codecov-action@v1
if: matrix.coverage == 'xdebug'
with:
file: ./build/coverage.xml
fail_ci_if_error: true