Skip to content

Commit

Permalink
[TASK] Try to test multiple core version
Browse files Browse the repository at this point in the history
  • Loading branch information
kanow committed Sep 5, 2024
1 parent ce4aa6a commit 1ba0025
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,26 @@ on: [push, pull_request]

jobs:

testsuite:
name: all tests
testsute:
name: "Testsuite"
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.2' ]
minMax: [ 'composerInstallMin', 'composerInstallMax' ]
coreVersion: [ '12.4', '13.2' ]
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Composer
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s ${{ matrix.minMax }}
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s ${{ matrix.minMax }} -t ${{ matrix.coreVersion }}

# - name: Composer validate
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerValidate
# - name: Composer validate
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerValidate

# - name: Lint PHP
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint
# - name: Lint PHP
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint

- name: Unit tests
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s unit
Expand Down

0 comments on commit 1ba0025

Please sign in to comment.