Skip to content

[New Version] Update versions file to PHP 8.4.0 #1522

[New Version] Update versions file to PHP 8.4.0

[New Version] Update versions file to PHP 8.4.0 #1522

Workflow file for this run

name: Continuous Integration
on:
push:
pull_request:
jobs:
supported-versions-matrix:
name: Supported Versions Matrix
runs-on: ubuntu-latest
outputs:
lowest: ${{ steps.supported-versions-matrix.outputs.lowest }}
version: ${{ steps.supported-versions-matrix.outputs.version }}
upcoming: ${{ steps.supported-versions-matrix.outputs.upcoming }}
extensions: ${{ steps.supported-versions-matrix.outputs.extensions }}
steps:
- uses: actions/checkout@v4
- id: supported-versions-matrix
uses: WyriHaximus/github-action-composer-php-versions-in-range@v1
with:
upcomingReleases: true
test:
needs:
- supported-versions-matrix
strategy:
fail-fast: false
matrix:
php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
runs-on: ubuntu-latest
container:
image: ghcr.io/wyrihaximusnet/php:${{ matrix.php }}-nts-alpine-dev-root
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: composer install --ansi --no-progress --no-interaction --prefer-dist
- name: 'Test'
run: php tests/test.php