Skip to content

first shot at adding 8.5 to test matrix #957

first shot at adding 8.5 to test matrix

first shot at adding 8.5 to test matrix #957

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
all-linux:
name: Linux - PHP ${{ matrix.php }}
strategy:
fail-fast: false
matrix:
php:
- 8.1.33
- 8.2.29
- 8.3.25
- 8.4.12
- 8.5.0beta3
uses: ./.github/workflows/main-php-matrix.yml
with:
php: ${{ matrix.php }}
secrets: inherit
all-windows:
name: Windows - PHP ${{ matrix.php }}
strategy:
fail-fast: false
matrix:
include:
- php: 8.1.33
vs-crt: vs16
- php: 8.2.29
vs-crt: vs16
- php: 8.3.25
vs-crt: vs16
- php: 8.4.12
vs-crt: vs17
- php: 8.5.0beta3
vs-crt: vs17
uses: ./.github/workflows/main-php-matrix-windows.yml
with:
php: ${{ matrix.php }}
vs-crt: ${{ matrix.vs-crt }}
secrets: inherit