tests 12.4 #309
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 12.4 | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '56 4 * * *' | |
jobs: | |
unit: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: | |
- '8.2' | |
- '8.3' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install testing system | |
run: Build/Scripts/runTests.sh -t 12.4 -p ${{ matrix.php }} -s composerUpdate | |
- name: Unit Tests | |
run: Build/Scripts/runTests.sh -t 12.4 -p ${{ matrix.php }} -s unit | |
- name: Unit Tests | |
run: Build/Scripts/runTests.sh -t 12.4 -p ${{ matrix.php }} -s functional |