Skip to content

update CI php versions #1

update CI php versions

update CI php versions #1

Workflow file for this run

name: Code Style PHP
on: [ workflow_call ]
jobs:
test-php:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ["8.2"]
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php_version }}
- name: Run composer test
uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php_version }}
command: run-script
args: test
test-php-experimental:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ["8.3-rc]

Check failure on line 28 in .github/workflows/.php-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/.php-ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php_version }}
- name: Run composer test
uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php_version }}
command: run-script
args: test
continue-on-error: true