[BUGFIX] Adjust version of used EXT:examples #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
testsuite: | |
name: all tests | |
runs-on: ubuntu-latest | |
strategy: | |
# This prevents cancellation of matrix job runs, if one or more already failed | |
# and let the remaining matrix jobs be executed anyway. | |
fail-fast: false | |
env: | |
php: '8.1' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install testing system | |
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s composerUpdate | |
- name: Lint PHP | |
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s lint | |
- name: CGL | |
run: Build/Scripts/runTests.sh -n -p ${{ env.php }} -s cgl -n | |
- name: Check Rst | |
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s checkRst |