Skip to content

[BUGFIX] Correct path for creating runTests.sh #264

[BUGFIX] Correct path for creating runTests.sh

[BUGFIX] Correct path for creating runTests.sh #264

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
testing:
name: Testing
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php:
- '8.2'
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: 'Lint PHP'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint
- name: 'Composer validate'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerValidate
- name: 'Install testing system'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerUpdate
- name: 'Composer normalize'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerNormalize -n
- name: 'CGL'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s cgl -n
- name: 'Run Rector'
run: Build/Scripts/runTests.sh -s rector -n
- name: 'PHPStan'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s phpstan
- name: 'Functional Tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s functional