Skip to content

IBX-8534: Change deprecated path to inputUri #916

IBX-8534: Change deprecated path to inputUri

IBX-8534: Change deprecated path to inputUri #916

Workflow file for this run

name: CI
on:
push:
branches:
- main
- '[0-9]+.[0-9]+'
pull_request: ~
jobs:
cs-fix:
name: Run code style check
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
- name: Setup PHP Action
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: none
extensions: 'pdo_sqlite, gd'
tools: cs2pr
- uses: ramsey/composer-install@v3
with:
dependency-versions: highest
- name: Run code style check
run: composer run-script check-cs -- --format=checkstyle | cs2pr
tests:
name: Unit & integration tests
runs-on: "ubuntu-22.04"
timeout-minutes: 15
env:
COMPOSER_ROOT_VERSION=dev-ibx-8534-core-v5-p2

Check failure on line 37 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 37, Col: 13): Unexpected value 'COMPOSER_ROOT_VERSION=dev-ibx-8534-core-v5-p2' .github/workflows/ci.yaml (Line: 73, Col: 9): Unexpected value 'env'
strategy:
fail-fast: false
matrix:
php:
- '8.3'
steps:
- uses: actions/checkout@v4
- name: Setup PHP Action
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
extensions: pdo_sqlite, gd
tools: cs2pr
- uses: ramsey/composer-install@v3
with:
dependency-versions: highest
- name: Run PHPStan analysis
run: composer run-script phpstan
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Run unit test suite
run: composer test
- name: Run integration test suite
run: composer test-integration
functional-tests:
name: "REST functional tests"
uses: ./.github/workflows/integration-tests-callable.yaml
env:
COMPOSER_ROOT_VERSION=dev-ibx-8534-core-v5-p2