Skip to content

bump to php >=8.1 everywhere #946

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 10 additions & 73 deletions .github/workflows/test-turbo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
working-directory: src/Turbo
run: vendor/bin/phpstan analyse --no-progress

tests-php-high-deps:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1']
fail-fast: false
name: PHP ${{ matrix.php-versions }} Test on ubuntu-latest
fail-fast: false
matrix:
php-version: ['8.1']
dependency-version: ['lowest', 'highest']

services:
mercure:
Expand All @@ -57,74 +57,13 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: zip, pdo_sqlite
php-version: ${{ matrix.php-version }}

- uses: ramsey/composer-install@v2
with:
working-directory: src/Turbo

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-yarn-

- name: Install JavaScript dependencies
working-directory: src/Turbo/tests/app
run: yarn install

- name: Build JavaScript
working-directory: src/Turbo/tests/app
run: yarn build

- name: Create DB
working-directory: src/Turbo/tests/app
run: php public/index.php doctrine:schema:create

- name: Run tests
working-directory: src/Turbo
env:
SYMFONY_DEPRECATIONS_HELPER: max[direct]=0
run: vendor/bin/simple-phpunit

tests-php-low-deps:
runs-on: ubuntu-latest
name: PHP 8.1 (lowest) Test on ubuntu-latest

services:
mercure:
image: dunglas/mercure
env:
SERVER_NAME: :3000
MERCURE_PUBLISHER_JWT_KEY: '!ChangeMe!'
MERCURE_SUBSCRIBER_JWT_KEY: '!ChangeMe!'
MERCURE_EXTRA_DIRECTIVES: |
anonymous
cors_origins *
ports:
- 3000:3000

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
- name: Install Turbo packages
uses: ramsey/composer-install@v2
with:
php-version: '8.1'
extensions: zip, pdo_sqlite

- uses: ramsey/composer-install@v2
with:
working-directory: src/Turbo
dependency-versions: lowest
working-directory: src/Turbo
dependency-versions: ${{ matrix.dependency-version }}

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down Expand Up @@ -152,6 +91,4 @@ jobs:

- name: Run tests
working-directory: src/Turbo
env:
SYMFONY_DEPRECATIONS_HELPER: max[total]=9223372036854775807 # PHP_INT_MAX
run: vendor/bin/simple-phpunit
Loading