Skip to content

Commit

Permalink
bump to php >=8.1 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
bendavies authored and weaverryan committed Jun 19, 2023
1 parent c669f92 commit 5bdab23
Show file tree
Hide file tree
Showing 37 changed files with 153 additions and 635 deletions.
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

0 comments on commit 5bdab23

Please sign in to comment.