Skip to content

Fix accidentally removed column name for Page::$content #34

Fix accidentally removed column name for Page::$content

Fix accidentally removed column name for Page::$content #34

Workflow file for this run

name: PHP CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- '8.1'
- '8.2'
- '8.3'
- '8.4'
symfony-version:
- '6.4'
- '7.3'
exclude:
- { php-version: 8.1, symfony-version: 7.3 }
name: PHP ${{ matrix.php-version }} and Symfony ${{ matrix.symfony-version }}
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
extensions: pdo, pdo_mysql
- run: composer validate
- id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Update Symfony version
run: |
sed -i composer.json -e 's/\^5.3[|]\^6.0[|]\^7.0/${{ matrix.symfony-version }}.*/g'
- run: composer install
- run: vendor/bin/simple-phpunit --version
- run: vendor/bin/simple-phpunit